]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ipc/msgutil.c: use linux/uaccess.h
authorHoSung Jung <rain6557@gmail.com>
Wed, 17 Apr 2013 23:49:07 +0000 (09:49 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Mon, 22 Apr 2013 08:08:27 +0000 (18:08 +1000)
Signed-off-by: HoSung Jung <rain6557@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
ipc/msgutil.c

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