浏览代码

oprofile: Use linux/mutex.h

The oprofile code is still including asm/mutex.h instead of
linux/mutex.h.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Robert Richter <robert.richter@amd.com>
Anton Blanchard 14 年之前
父节点
当前提交
b76a06e08d
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      drivers/oprofile/event_buffer.h
  2. 1 1
      drivers/oprofile/oprof.c

+ 1 - 1
drivers/oprofile/event_buffer.h

@@ -11,7 +11,7 @@
 #define EVENT_BUFFER_H
 
 #include <linux/types.h>
-#include <asm/mutex.h>
+#include <linux/mutex.h>
 
 int alloc_event_buffer(void);
 

+ 1 - 1
drivers/oprofile/oprof.c

@@ -14,7 +14,7 @@
 #include <linux/moduleparam.h>
 #include <linux/workqueue.h>
 #include <linux/time.h>
-#include <asm/mutex.h>
+#include <linux/mutex.h>
 
 #include "oprof.h"
 #include "event_buffer.h"