]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
nfc: add dummy nfc_llc_shdlc_register definition
authorJohn W. Linville <linville@tuxdriver.com>
Wed, 26 Sep 2012 17:30:16 +0000 (13:30 -0400)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 26 Sep 2012 17:38:48 +0000 (13:38 -0400)
This is used when CONFIG_NFC_SHDLC is disabled.

Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/nfc/hci/llc.h

index c7014fdfc8c969779030a6f19d66aff3a9488384..7be0b7f3ceb6aa34ec3adfa5f6b077c79cef3b24 100644 (file)
@@ -56,6 +56,14 @@ int nfc_llc_register(const char *name, struct nfc_llc_ops *ops);
 void nfc_llc_unregister(const char *name);
 
 int nfc_llc_nop_register(void);
+
+#if defined(CONFIG_NFC_SHDLC)
 int nfc_llc_shdlc_register(void);
+#else
+static inline int nfc_llc_shdlc_register(void)
+{
+       return 0;
+}
+#endif
 
 #endif /* __LOCAL_LLC_H_ */