thermal: netlink: Rename thermal_gnl_family
authorStanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
Fri, 23 Feb 2024 15:59:41 +0000 (16:59 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 27 Mar 2024 13:50:26 +0000 (14:50 +0100)
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>
drivers/thermal/thermal_netlink.c

index d407130563e5bc37f9038be3173fef1c36e91927..bef14ce69ec4189907d0637d05f980ad7f56db5a 100644 (file)
@@ -70,12 +70,12 @@ 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 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 *******************************/
@@ -92,7 +92,7 @@ int thermal_genl_sampling_temp(int id, int temp)
        if (!skb)
                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);
        if (!hdr)
                goto out_free;
@@ -105,7 +105,7 @@ int thermal_genl_sampling_temp(int id, int temp)
 
        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;
 out_cancel:
@@ -279,7 +279,7 @@ static int thermal_genl_send_event(enum thermal_genl_event event,
                return -ENOMEM;
        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)
                goto out_free_msg;
 
@@ -289,7 +289,7 @@ static int thermal_genl_send_event(enum thermal_genl_event event,
 
        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;
 
@@ -590,7 +590,7 @@ static int thermal_genl_cmd_dumpit(struct sk_buff *skb,
        int ret;
        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)
                return -EMSGSIZE;
 
@@ -622,7 +622,7 @@ static int thermal_genl_cmd_doit(struct sk_buff *skb,
                return -ENOMEM;
        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)
                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,
        .name           = THERMAL_GENL_FAMILY_NAME,
        .version        = THERMAL_GENL_VERSION,
@@ -718,10 +718,10 @@ int thermal_genl_unregister_notifier(struct notifier_block *nb)
 
 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)
 {
-       genl_unregister_family(&thermal_gnl_family);
+       genl_unregister_family(&thermal_genl_family);
 }