diff options
author | Robert Richter <robert.richter@amd.com> | 2008-11-26 15:00:52 +0100 |
---|---|---|
committer | Robert Richter <robert.richter@amd.com> | 2008-12-10 14:20:06 +0100 |
commit | 8dbc50c322619eb821907e8dba75252f5378c712 (patch) | |
tree | 3d58ff11980e352f402966e2e76327e1d1317dd6 /drivers/oprofile | |
parent | cdc1834d1aa2e5b574a25e66f82625b44cdd0d8f (diff) |
oprofile: fix typo
Signed-off-by: Robert Richter <robert.richter@amd.com>
Diffstat (limited to 'drivers/oprofile')
-rw-r--r-- | drivers/oprofile/buffer_sync.c | 2 |
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) { 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; |