Commit 3967e93e authored by Robert Richter's avatar Robert Richter

oprofile: simplify add_sample() in cpu_buffer.c

Signed-off-by: default avatarRobert Richter <robert.richter@amd.com>
parent 6352d92d
......@@ -203,11 +203,7 @@ add_sample(struct oprofile_cpu_buffer *cpu_buf,
entry.sample->eip = pc;
entry.sample->event = event;
ret = op_cpu_buffer_write_commit(&entry);
if (ret)
return ret;
return 0;
return op_cpu_buffer_write_commit(&entry);
}
static inline int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment