From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH -next] nfc: shdlc needs to select CRC_CCITT Date: Mon, 14 May 2012 13:13:25 -0700 Message-ID: <4FB16765.3090602@xenotime.net> References: <20120514200357.e7448e4ca061c8efe3d4757d@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20120514200357.e7448e4ca061c8efe3d4757d-3FnU+UHB4dNDw9hX6IcOSA@public.gmane.org> Sender: linux-wireless-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Stephen Rothwell Cc: linux-next-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, LKML , linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Lauro Ramos Venancio , Aloisio Almeida Jr , Samuel Ortiz List-Id: linux-next.vger.kernel.org From: Randy Dunlap Fix build error: SHDLC uses crc_ccitt so it should select CRC_CCITT. ERROR: "crc_ccitt" [net/nfc/hci/hci.ko] undefined! Signed-off-by: Randy Dunlap Cc: Lauro Ramos Venancio Cc: Aloisio Almeida Jr Cc: Samuel Ortiz --- net/nfc/hci/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-next-20120514.orig/net/nfc/hci/Kconfig +++ linux-next-20120514/net/nfc/hci/Kconfig @@ -11,6 +11,7 @@ config NFC_SHDLC depends on NFC_HCI bool "SHDLC link layer for HCI based NFC drivers" default n + select CRC_CCITT ---help--- Say yes if you use an NFC HCI driver that requires SHDLC link layer. If unsure, say N here. -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html