diff options
Diffstat (limited to 'include/net/bluetooth/bluetooth.h')
| -rw-r--r-- | include/net/bluetooth/bluetooth.h | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/include/net/bluetooth/bluetooth.h b/include/net/bluetooth/bluetooth.h index 7dba80546f16..38d8a34d3589 100644 --- a/include/net/bluetooth/bluetooth.h +++ b/include/net/bluetooth/bluetooth.h @@ -365,8 +365,19 @@ extern struct dentry *bt_debugfs;  int l2cap_init(void);  void l2cap_exit(void); +#if IS_ENABLED(CONFIG_BT_BREDR)  int sco_init(void);  void sco_exit(void); +#else +static inline int sco_init(void) +{ +	return 0; +} + +static inline void sco_exit(void) +{ +} +#endif  int mgmt_init(void);  void mgmt_exit(void);  |