From mboxrd@z Thu Jan 1 00:00:00 1970 From: akpm@linux-foundation.org Subject: [patch 3/6] isdn: fix netjet build errors Date: Fri, 18 Sep 2009 12:53:03 -0700 Message-ID: <200909181953.n8IJr3Gj026249@imap1.linux-foundation.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Cc: netdev@vger.kernel.org, akpm@linux-foundation.org, randy.dunlap@oracle.com To: isdn@linux-pingi.de Return-path: Received: from smtp1.linux-foundation.org ([140.211.169.13]:59127 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758108AbZIRUCD (ORCPT ); Fri, 18 Sep 2009 16:02:03 -0400 Sender: netdev-owner@vger.kernel.org List-ID: From: Randy Dunlap Fix netjet driver link errors when ISDN_I4L is not enabled: drivers/built-in.o: In function `mode_tiger': netjet.c:(.text+0x325dc8): undefined reference to `isdnhdlc_rcv_init' netjet.c:(.text+0x325dd5): undefined reference to `isdnhdlc_out_init' drivers/built-in.o: In function `fill_dma': netjet.c:(.text+0x325fb6): undefined reference to `isdnhdlc_encode' drivers/built-in.o: In function `read_dma': netjet.c:(.text+0x32631a): undefined reference to `isdnhdlc_decode' drivers/built-in.o: In function `nj_irq': netjet.c:(.text+0x326e01): undefined reference to `isdnhdlc_encode' or move isdnhdlc.c to some other sub-dir.. Signed-off-by: Randy Dunlap Cc: Karsten Keil Signed-off-by: Andrew Morton --- drivers/isdn/hardware/mISDN/Kconfig | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/isdn/hardware/mISDN/Kconfig~isdn-fix-netjet-build-errors drivers/isdn/hardware/mISDN/Kconfig --- a/drivers/isdn/hardware/mISDN/Kconfig~isdn-fix-netjet-build-errors +++ a/drivers/isdn/hardware/mISDN/Kconfig @@ -78,6 +78,7 @@ config MISDN_NETJET depends on PCI select MISDN_IPAC select ISDN_HDLC + select ISDN_I4L # so that make will recurse into sub-dir. help Enable support for Traverse Technologies NETJet PCI cards. _