The API name space for Bluetooth is bt_* and BT_* so it makes sense to align the Kconfig name space with this. The additional benefit is that this also makes the names shorter. It is also in line with what Linux uses for Bluetooth Kconfig entries. Some Bluetooth-related Networking Kconfig defines are renamed as well in order to be consistent, such as NET_L2_BLUETOOTH. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
14 lines
269 B
C
14 lines
269 B
C
/* IEEE 802.15.4 settings header */
|
|
|
|
/*
|
|
* Copyright (c) 2017 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if defined(CONFIG_NET_L2_BT) && defined(CONFIG_NET_APP_SETTINGS)
|
|
int _net_app_bt_setup(void);
|
|
#else
|
|
#define _net_app_bt_setup(...) 0
|
|
#endif
|