aboutsummaryrefslogtreecommitdiff
path: root/drivers/oprofile/buffer_sync.c
diff options
context:
space:
mode:
authorRobert Richter <robert.richter@amd.com>2008-11-26 15:00:52 +0100
committerRobert Richter <robert.richter@amd.com>2008-12-10 14:20:06 +0100
commit8dbc50c322619eb821907e8dba75252f5378c712 (patch)
tree3d58ff11980e352f402966e2e76327e1d1317dd6 /drivers/oprofile/buffer_sync.c
parentcdc1834d1aa2e5b574a25e66f82625b44cdd0d8f (diff)
oprofile: fix typo
Signed-off-by: Robert Richter <robert.richter@amd.com>
Diffstat (limited to 'drivers/oprofile/buffer_sync.c')
-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 b55cd23ffde..774b081b9b7 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)
{
unsigned long new_tail = b->tail_pos + 1;
- rmb(); /* be sure fifo pointers are synchromized */
+ rmb(); /* be sure fifo pointers are synchronized */
if (new_tail < b->buffer_size)
b->tail_pos = new_tail;