소스 검색

ipc/msgutil.c: use linux/uaccess.h

Signed-off-by: HoSung Jung <rain6557@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
HoSung Jung 12 년 전
부모
커밋
1e3c941c52
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      ipc/msgutil.c

+ 2 - 2
ipc/msgutil.c

@@ -17,7 +17,7 @@
 #include <linux/ipc_namespace.h>
 #include <linux/ipc_namespace.h>
 #include <linux/utsname.h>
 #include <linux/utsname.h>
 #include <linux/proc_fs.h>
 #include <linux/proc_fs.h>
-#include <asm/uaccess.h>
+#include <linux/uaccess.h>
 
 
 #include "util.h"
 #include "util.h"
 
 
@@ -37,7 +37,7 @@ struct ipc_namespace init_ipc_ns = {
 atomic_t nr_ipc_ns = ATOMIC_INIT(1);
 atomic_t nr_ipc_ns = ATOMIC_INIT(1);
 
 
 struct msg_msgseg {
 struct msg_msgseg {
-	struct msg_msgseg* next;
+	struct msg_msgseg *next;
 	/* the next part of the message follows immediately */
 	/* the next part of the message follows immediately */
 };
 };