mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
nfc: add dummy nfc_llc_shdlc_register definition
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>
This commit is contained in:
parent
944f8a1a6f
commit
8a14e8bf38
@ -56,6 +56,14 @@ int nfc_llc_register(const char *name, struct nfc_llc_ops *ops);
|
|||||||
void nfc_llc_unregister(const char *name);
|
void nfc_llc_unregister(const char *name);
|
||||||
|
|
||||||
int nfc_llc_nop_register(void);
|
int nfc_llc_nop_register(void);
|
||||||
|
|
||||||
|
#if defined(CONFIG_NFC_SHDLC)
|
||||||
int nfc_llc_shdlc_register(void);
|
int nfc_llc_shdlc_register(void);
|
||||||
|
#else
|
||||||
|
static inline int nfc_llc_shdlc_register(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* __LOCAL_LLC_H_ */
|
#endif /* __LOCAL_LLC_H_ */
|
||||||
|
Loading…
Reference in New Issue
Block a user