aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRobert Richter <robert.richter@amd.com>2008-11-26 09:00:52 -0500
committerRobert Richter <robert.richter@amd.com>2008-12-10 08:20:06 -0500
commit8dbc50c322619eb821907e8dba75252f5378c712 (patch)
tree3d58ff11980e352f402966e2e76327e1d1317dd6 /drivers
parentcdc1834d1aa2e5b574a25e66f82625b44cdd0d8f (diff)
oprofile: fix typo
Signed-off-by: Robert Richter <robert.richter@amd.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/oprofile/buffer_sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/oprofile/buffer_sync.c b/drivers/oprofile/buffer_sync.c
index b55cd23ffdef..774b081b9b7f 100644
--- a/drivers/oprofile/buffer_sync.c
+++ b/drivers/oprofile/buffer_sync.c
@@ -272,7 +272,7 @@ static void increment_tail(struct oprofile_cpu_buffer *b)
272{ 272{
273 unsigned long new_tail = b->tail_pos + 1; 273 unsigned long new_tail = b->tail_pos + 1;
274 274
275 rmb(); /* be sure fifo pointers are synchromized */ 275 rmb(); /* be sure fifo pointers are synchronized */
276 276
277 if (new_tail < b->buffer_size) 277 if (new_tail < b->buffer_size)
278 b->tail_pos = new_tail; 278 b->tail_pos = new_tail;