From: Paul Walmsley Date: Tue, 8 May 2007 20:01:10 +0000 (-0600) Subject: fix sti-netlink.c compilation failure X-Git-Tag: v2.6.22-omap1~161 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=10af6743229179861924f6e48315006fdfdb8123;p=linux-2.6-omap-h63xx.git fix sti-netlink.c compilation failure Fix this compilation error in current linux-omap-2.6 git head: CC arch/arm/plat-omap/sti/sti-netlink.o arch/arm/plat-omap/sti/sti-netlink.c: In function 'sti_netlink_init': arch/arm/plat-omap/sti/sti-netlink.c:145: warning: passing argument 4 of 'netlink_kernel_create' from incompatible pointer type arch/arm/plat-omap/sti/sti-netlink.c:145: error: too few arguments to function 'netlink_kernel_create' make[2]: *** [arch/arm/plat-omap/sti/sti-netlink.o] Error 1 make[1]: *** [arch/arm/plat-omap/sti] Error 2 make: *** [arch/arm/plat-omap] Error 2 Compile-tested only. Signed-off-by: Paul Walmsley Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/plat-omap/sti/sti-netlink.c b/arch/arm/plat-omap/sti/sti-netlink.c index 5593aee567d..aed89da655e 100644 --- a/arch/arm/plat-omap/sti/sti-netlink.c +++ b/arch/arm/plat-omap/sti/sti-netlink.c @@ -142,7 +142,8 @@ static void sti_netlink_receive(struct sock *sk, int len) static int __init sti_netlink_init(void) { sti_sock = netlink_kernel_create(NETLINK_USERSOCK, 0, - sti_netlink_receive, THIS_MODULE); + sti_netlink_receive, NULL, + THIS_MODULE); if (!sti_sock) { printk(KERN_ERR "STI: Failed to create netlink socket\n"); return -ENODEV;