mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-23 12:14:26 +08:00
attrib: annotate immutable data as const
This commit is contained in:
parent
a078d13ab5
commit
a8543fd2b0
@ -454,7 +454,7 @@ static gboolean parse_uuid(const char *key, const char *value,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static GOptionEntry primary_char_options[] = {
|
||||
static const GOptionEntry primary_char_options[] = {
|
||||
{ "start", 's' , 0, G_OPTION_ARG_INT, &opt_start,
|
||||
"Starting handle (optional)", "0x0001" },
|
||||
{ "end", 'e' , 0, G_OPTION_ARG_INT, &opt_end,
|
||||
@ -464,7 +464,7 @@ static GOptionEntry primary_char_options[] = {
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
static GOptionEntry char_rw_options[] = {
|
||||
static const GOptionEntry char_rw_options[] = {
|
||||
{ "handle", 'a' , 0, G_OPTION_ARG_INT, &opt_handle,
|
||||
"Read/Write characteristic by handle (required)", "0x0001" },
|
||||
{ "value", 'n' , 0, G_OPTION_ARG_STRING, &opt_value,
|
||||
@ -473,7 +473,7 @@ static GOptionEntry char_rw_options[] = {
|
||||
{NULL},
|
||||
};
|
||||
|
||||
static GOptionEntry gatt_options[] = {
|
||||
static const GOptionEntry gatt_options[] = {
|
||||
{ "primary", 0, 0, G_OPTION_ARG_NONE, &opt_primary,
|
||||
"Primary Service Discovery", NULL },
|
||||
{ "characteristics", 0, 0, G_OPTION_ARG_NONE, &opt_characteristics,
|
||||
@ -494,7 +494,7 @@ static GOptionEntry gatt_options[] = {
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
static GOptionEntry options[] = {
|
||||
static const GOptionEntry options[] = {
|
||||
{ "adapter", 'i', 0, G_OPTION_ARG_STRING, &opt_src,
|
||||
"Specify local adapter interface", "hciX" },
|
||||
{ "device", 'b', 0, G_OPTION_ARG_STRING, &opt_dst,
|
||||
|
@ -760,7 +760,7 @@ static void cmd_mtu(int argcp, char **argvp)
|
||||
gatt_exchange_mtu(attrib, opt_mtu, exchange_mtu_cb, NULL);
|
||||
}
|
||||
|
||||
static struct {
|
||||
static const struct {
|
||||
const char *cmd;
|
||||
void (*func)(int argcp, char **argvp);
|
||||
const char *params;
|
||||
|
Loading…
Reference in New Issue
Block a user