* Kamalesh Babulal <kamalesh@xxxxxxxxxxxxxxxxxx> wrote: > The patch ctc: make use of alloc_netdev() (commit > 1c1478859017452a1179dbbdf7b9eb5b48438746) introduces the build failure > > CC [M] drivers/s390/net/fsm.o > CC [M] drivers/s390/net/smsgiucv.o > CC [M] drivers/s390/net/ctcmain.o > drivers/s390/net/ctcmain.c: In function `ctc_init_netdevice': > drivers/s390/net/ctcmain.c:2805: error: implicit declaration of function `SET_MODULE_OWNER' > make[2]: *** [drivers/s390/net/ctcmain.o] Error 1 > make[1]: *** [drivers/s390/net] Error 2 > make: *** [drivers/s390] Error 2 the patch below should fix this. Ingo ------------> Subject: drivers/s390/net/ctcmain.c: fix build bug From: Ingo Molnar <mingo@xxxxxxx> SET_MODULE_OWNER() is obsolete. Signed-off-by: Ingo Molnar <mingo@xxxxxxx> --- drivers/s390/net/ctcmain.c | 1 - 1 file changed, 1 deletion(-) Index: linux/drivers/s390/net/ctcmain.c =================================================================== --- linux.orig/drivers/s390/net/ctcmain.c +++ linux/drivers/s390/net/ctcmain.c @@ -2802,7 +2802,6 @@ void ctc_init_netdevice(struct net_devic dev->type = ARPHRD_SLIP; dev->tx_queue_len = 100; dev->flags = IFF_POINTOPOINT | IFF_NOARP; - SET_MODULE_OWNER(dev); } - To unsubscribe from this list: send the line "unsubscribe linux-s390" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html