diff --git a/bluetooth/include/bdroid_buildcfg.h b/bluetooth/include/bdroid_buildcfg.h index 2c71801..9a3349d 100644 --- a/bluetooth/include/bdroid_buildcfg.h +++ b/bluetooth/include/bdroid_buildcfg.h @@ -23,45 +23,6 @@ #ifndef _BDROID_BUILDCFG_H #define _BDROID_BUILDCFG_H -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif -int property_get(const char *key, char *value, const char *default_value); -#ifdef __cplusplus -} -#endif - -#include "osi/include/osi.h" - -typedef struct { - const char *product_device; - const char *product_model; -} device_t; - -static const device_t devices[] = { -}; - -static inline const char *BtmGetDefaultName() -{ - char product_device[92]; - property_get("ro.product.device", product_device, ""); - - for (unsigned int i = 0; i < ARRAY_SIZE(devices); i++) { - device_t device = devices[i]; - - if (strcmp(device.product_device, product_device) == 0) { - return device.product_model; - } - } - - // Fallback to ro.product.model - return ""; -} - -#define BTM_DEF_LOCAL_NAME BtmGetDefaultName() // Disables read remote device feature #define MAX_ACL_CONNECTIONS 16 #define MAX_L2CAP_CHANNELS 32