thermal: netlink: Rename thermal_gnl_family

Almost all thermal netlink structures use thermal_genl prefix.
Change thermal_gnl_family name accordingly for consistency.

No functional impact.

Signed-off-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Stanislaw Gruszka 2024-02-23 16:59:41 +01:00 committed by Rafael J. Wysocki
parent cf580ad490
commit afdaff3706

View File

@ -70,12 +70,12 @@ struct param {
typedef int (*cb_t)(struct param *); typedef int (*cb_t)(struct param *);
static struct genl_family thermal_gnl_family; static struct genl_family thermal_genl_family;
static BLOCKING_NOTIFIER_HEAD(thermal_genl_chain); static BLOCKING_NOTIFIER_HEAD(thermal_genl_chain);
static int thermal_group_has_listeners(enum thermal_genl_multicast_groups group) static int thermal_group_has_listeners(enum thermal_genl_multicast_groups group)
{ {
return genl_has_listeners(&thermal_gnl_family, &init_net, group); return genl_has_listeners(&thermal_genl_family, &init_net, group);
} }
/************************** Sampling encoding *******************************/ /************************** Sampling encoding *******************************/
@ -92,7 +92,7 @@ int thermal_genl_sampling_temp(int id, int temp)
if (!skb) if (!skb)
return -ENOMEM; return -ENOMEM;
hdr = genlmsg_put(skb, 0, 0, &thermal_gnl_family, 0, hdr = genlmsg_put(skb, 0, 0, &thermal_genl_family, 0,
THERMAL_GENL_SAMPLING_TEMP); THERMAL_GENL_SAMPLING_TEMP);
if (!hdr) if (!hdr)
goto out_free; goto out_free;
@ -105,7 +105,7 @@ int thermal_genl_sampling_temp(int id, int temp)
genlmsg_end(skb, hdr); genlmsg_end(skb, hdr);
genlmsg_multicast(&thermal_gnl_family, skb, 0, THERMAL_GENL_SAMPLING_GROUP, GFP_KERNEL); genlmsg_multicast(&thermal_genl_family, skb, 0, THERMAL_GENL_SAMPLING_GROUP, GFP_KERNEL);
return 0; return 0;
out_cancel: out_cancel:
@ -279,7 +279,7 @@ static int thermal_genl_send_event(enum thermal_genl_event event,
return -ENOMEM; return -ENOMEM;
p->msg = msg; p->msg = msg;
hdr = genlmsg_put(msg, 0, 0, &thermal_gnl_family, 0, event); hdr = genlmsg_put(msg, 0, 0, &thermal_genl_family, 0, event);
if (!hdr) if (!hdr)
goto out_free_msg; goto out_free_msg;
@ -289,7 +289,7 @@ static int thermal_genl_send_event(enum thermal_genl_event event,
genlmsg_end(msg, hdr); genlmsg_end(msg, hdr);
genlmsg_multicast(&thermal_gnl_family, msg, 0, THERMAL_GENL_EVENT_GROUP, GFP_KERNEL); genlmsg_multicast(&thermal_genl_family, msg, 0, THERMAL_GENL_EVENT_GROUP, GFP_KERNEL);
return 0; return 0;
@ -590,7 +590,7 @@ static int thermal_genl_cmd_dumpit(struct sk_buff *skb,
int ret; int ret;
void *hdr; void *hdr;
hdr = genlmsg_put(skb, 0, 0, &thermal_gnl_family, 0, cmd); hdr = genlmsg_put(skb, 0, 0, &thermal_genl_family, 0, cmd);
if (!hdr) if (!hdr)
return -EMSGSIZE; return -EMSGSIZE;
@ -622,7 +622,7 @@ static int thermal_genl_cmd_doit(struct sk_buff *skb,
return -ENOMEM; return -ENOMEM;
p.msg = msg; p.msg = msg;
hdr = genlmsg_put_reply(msg, info, &thermal_gnl_family, 0, cmd); hdr = genlmsg_put_reply(msg, info, &thermal_genl_family, 0, cmd);
if (!hdr) if (!hdr)
goto out_free_msg; goto out_free_msg;
@ -691,7 +691,7 @@ static const struct genl_small_ops thermal_genl_ops[] = {
}, },
}; };
static struct genl_family thermal_gnl_family __ro_after_init = { static struct genl_family thermal_genl_family __ro_after_init = {
.hdrsize = 0, .hdrsize = 0,
.name = THERMAL_GENL_FAMILY_NAME, .name = THERMAL_GENL_FAMILY_NAME,
.version = THERMAL_GENL_VERSION, .version = THERMAL_GENL_VERSION,
@ -718,10 +718,10 @@ int thermal_genl_unregister_notifier(struct notifier_block *nb)
int __init thermal_netlink_init(void) int __init thermal_netlink_init(void)
{ {
return genl_register_family(&thermal_gnl_family); return genl_register_family(&thermal_genl_family);
} }
void __init thermal_netlink_exit(void) void __init thermal_netlink_exit(void)
{ {
genl_unregister_family(&thermal_gnl_family); genl_unregister_family(&thermal_genl_family);
} }