diff options
author | Robert Richter <robert.richter@amd.com> | 2008-12-29 23:10:58 -0500 |
---|---|---|
committer | Robert Richter <robert.richter@amd.com> | 2008-12-29 23:30:05 -0500 |
commit | 3967e93e063d7ee608f465cbccb65abb518e9d33 (patch) | |
tree | 470488852d80491007c29c6724566d1e1d9edc54 /drivers/oprofile/cpu_buffer.c | |
parent | 6352d92dec0c4b833c12a169e86762c05d0396f3 (diff) |
oprofile: simplify add_sample() in cpu_buffer.c
Signed-off-by: Robert Richter <robert.richter@amd.com>
Diffstat (limited to 'drivers/oprofile/cpu_buffer.c')
-rw-r--r-- | drivers/oprofile/cpu_buffer.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/oprofile/cpu_buffer.c b/drivers/oprofile/cpu_buffer.c index 435bd6e08d5b..d92f0020502e 100644 --- a/drivers/oprofile/cpu_buffer.c +++ b/drivers/oprofile/cpu_buffer.c | |||
@@ -203,11 +203,7 @@ add_sample(struct oprofile_cpu_buffer *cpu_buf, | |||
203 | entry.sample->eip = pc; | 203 | entry.sample->eip = pc; |
204 | entry.sample->event = event; | 204 | entry.sample->event = event; |
205 | 205 | ||
206 | ret = op_cpu_buffer_write_commit(&entry); | 206 | return op_cpu_buffer_write_commit(&entry); |
207 | if (ret) | ||
208 | return ret; | ||
209 | |||
210 | return 0; | ||
211 | } | 207 | } |
212 | 208 | ||
213 | static inline int | 209 | static inline int |