perf header: Get rid of write_it label
Simplifying the code a bit. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/20190213123246.4015-8-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
33bbc571ed
commit
a9aeb87b98
@ -1042,11 +1042,9 @@ static int write_cpuid(struct feat_fd *ff,
|
|||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = get_cpuid(buffer, sizeof(buffer));
|
ret = get_cpuid(buffer, sizeof(buffer));
|
||||||
if (!ret)
|
if (ret)
|
||||||
goto write_it;
|
return -1;
|
||||||
|
|
||||||
return -1;
|
|
||||||
write_it:
|
|
||||||
return do_write_string(ff, buffer);
|
return do_write_string(ff, buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user