From: Robert Richter Date: Wed, 26 Nov 2008 14:00:52 +0000 (+0100) Subject: oprofile: fix typo X-Git-Tag: v2.6.29-rc1~564^2~16 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=8dbc50c322619eb821907e8dba75252f5378c712;p=linux-2.6-omap-h63xx.git oprofile: fix typo Signed-off-by: Robert Richter --- 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;