瀏覽代碼

oprofile: fix typo

Signed-off-by: Robert Richter <robert.richter@amd.com>
Robert Richter 16 年之前
父節點
當前提交
8dbc50c322
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/oprofile/buffer_sync.c

+ 1 - 1
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;