include/nuttx/wireless: Remove const from some members of IOCTL structures. The const makes it awkward to initialize the structure.

This commit is contained in:
Gregory Nutt
2018-04-02 14:42:01 -06:00
parent bf23588a41
commit 9d3a06e55d
+2 -2
View File
@@ -242,8 +242,8 @@ struct bt_advertisestart_s
{
char as_name[HCI_DEVNAME_SIZE]; /* Device name */
uint8_t as_type; /* Advertising type */
FAR const struct bt_eir_s as_ad; /* Data for advertisement packets */
FAR const struct bt_eir_s as_sd; /* Data for scan response packets */
FAR struct bt_eir_s as_ad; /* Data for advertisement packets */
FAR struct bt_eir_s as_sd; /* Data for scan response packets */
};
/* The read-only data that accompanies the SIOCBT_SCANSTOP IOCTL command */