mirror of
https://github.com/apache/nuttx.git
synced 2026-09-10 02:46:33 +00:00
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:
parent
bf23588a41
commit
9d3a06e55d
1 changed files with 2 additions and 2 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue