Rename two commands to match the Bluetooth specification in hccontrol(8).
Fix some bad spelling while at it. Submitted by: Marc Veldman <marc@bumblingdork.com> PR: 245868 MFC after: 1 week Sponsored by: Mellanox Technologies
This commit is contained in:
parent
010f003956
commit
2bb38765ce
@ -1491,7 +1491,7 @@ hci_write_page_scan_mode(int s, int argc, char **argv)
|
|||||||
} /* hci_write_page_scan_mode */
|
} /* hci_write_page_scan_mode */
|
||||||
|
|
||||||
static int
|
static int
|
||||||
hci_read_le_host_supported_command(int s, int argc, char **argv)
|
hci_read_le_host_support(int s, int argc, char **argv)
|
||||||
{
|
{
|
||||||
ng_hci_read_le_host_supported_rp rp;
|
ng_hci_read_le_host_supported_rp rp;
|
||||||
int n;
|
int n;
|
||||||
@ -1508,13 +1508,13 @@ hci_read_le_host_supported_command(int s, int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
fprintf(stdout, "LE Host support: %#02x\n", rp.le_supported_host);
|
fprintf(stdout, "LE Host support: %#02x\n", rp.le_supported_host);
|
||||||
fprintf(stdout, "Simulateneouse LE Host : %#02x\n", rp.simultaneous_le_host);
|
fprintf(stdout, "Simultaneous LE Host : %#02x\n", rp.simultaneous_le_host);
|
||||||
|
|
||||||
return (OK);
|
return (OK);
|
||||||
|
|
||||||
}
|
}
|
||||||
static int
|
static int
|
||||||
hci_write_le_host_supported_command(int s, int argc, char **argv)
|
hci_write_le_host_support(int s, int argc, char **argv)
|
||||||
{
|
{
|
||||||
ng_hci_write_le_host_supported_cp cp;
|
ng_hci_write_le_host_supported_cp cp;
|
||||||
ng_hci_write_le_host_supported_rp rp;
|
ng_hci_write_le_host_supported_rp rp;
|
||||||
@ -1948,14 +1948,14 @@ struct hci_command host_controller_baseband_commands[] = {
|
|||||||
&hci_write_page_scan_mode
|
&hci_write_page_scan_mode
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"read_le_host_supported_command", \
|
"read_le_host_support", \
|
||||||
"Read if this host is in le supported mode and stimulatenouse le supported mode",
|
"Read if this host is in LE supported mode and simultaneous LE supported mode",
|
||||||
&hci_read_le_host_supported_command,
|
&hci_read_le_host_support,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"write_le_host_supported_command", \
|
"write_le_host_support", \
|
||||||
"write_le_host_supported_command le_host[0|1] stimultajeous_le[0|1]",
|
"write_le_host_support le_host[0|1] simultaneous_le[0|1]",
|
||||||
&hci_write_le_host_supported_command,
|
&hci_write_le_host_support,
|
||||||
},
|
},
|
||||||
|
|
||||||
{ NULL, }
|
{ NULL, }
|
||||||
|
Loading…
Reference in New Issue
Block a user