* re: Rename exported func generate_netlink_event to thermal_netlink_event
@ 2011-01-21 10:49 R, Durgadoss
2011-01-24 0:24 ` Zhang Rui
0 siblings, 1 reply; 2+ messages in thread
From: R, Durgadoss @ 2011-01-21 10:49 UTC (permalink / raw)
To: Len Brown; +Cc: Thomas Renninger, linux-acpi@vger.kernel.org
Hi Len,
I tested this patch from Thomas.
This works fine for me.
Could you please apply this on top of the old patch?
Thanks,
Durga
--------------------------------------------
thermal: Rename exported func generate_netlink_event to thermal_netlink_event
Tested-by: Durgadoss R <durgadoss.r@intel.com>
Signed-off-by: Thomas Renninger <trenn@suse.de>
CC: R.Durgadoss <durgadoss.r@intel.com>
CC: Len Brown <len.brown@intel.com>
---
drivers/thermal/thermal_sys.c | 8 ++++----
include/linux/thermal.h | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/thermal/thermal_sys.c b/drivers/thermal/thermal_sys.c
index 5bbacff..02283f3 100644
--- a/drivers/thermal/thermal_sys.c
+++ b/drivers/thermal/thermal_sys.c
@@ -78,7 +78,7 @@ static struct genl_multicast_group thermal_event_mcgrp = {
static int genetlink_init(void);
static void genetlink_exit(void);
-int generate_netlink_event(u32 orig, enum events event)
+int thermal_netlink_event(u32 orig, enum events event)
{
struct sk_buff *skb;
struct nlattr *attr;
@@ -137,7 +137,7 @@ int generate_netlink_event(u32 orig, enum events event)
return result;
}
-EXPORT_SYMBOL(generate_netlink_event);
+EXPORT_SYMBOL(thermal_netlink_event);
static int genetlink_init(void)
{
@@ -163,8 +163,8 @@ static void genetlink_exit(void)
static void genetlink_exit(void) {};
static int genetlink_init(void) { return 0; }
-int generate_netlink_event(u32 orig, enum events event) { return 0; }
-EXPORT_SYMBOL(generate_netlink_event);
+int thermal_netlink_event(u32 orig, enum events event) { return 0; }
+EXPORT_SYMBOL(thermal_netlink_event);
#endif /* CONFIG_NET */
diff --git a/include/linux/thermal.h b/include/linux/thermal.h
index 1c31614..c24756e 100644
--- a/include/linux/thermal.h
+++ b/include/linux/thermal.h
@@ -161,7 +161,7 @@ enum {
};
#define THERMAL_GENL_CMD_MAX (__THERMAL_GENL_CMD_MAX - 1)
#endif
-extern int generate_netlink_event(u32 orig, enum events event);
+extern int thermal_netlink_event(u32 orig, enum events event);
struct thermal_zone_device *thermal_zone_device_register(char *, int, void *,
const struct thermal_zone_device_ops *, int tc1, int tc2,
^ permalink raw reply related [flat|nested] 2+ messages in thread
* re: Rename exported func generate_netlink_event to thermal_netlink_event
2011-01-21 10:49 Rename exported func generate_netlink_event to thermal_netlink_event R, Durgadoss
@ 2011-01-24 0:24 ` Zhang Rui
0 siblings, 0 replies; 2+ messages in thread
From: Zhang Rui @ 2011-01-24 0:24 UTC (permalink / raw)
To: R, Durgadoss; +Cc: Len Brown, Thomas Renninger, linux-acpi@vger.kernel.org
On Fri, 2011-01-21 at 18:49 +0800, R, Durgadoss wrote:
> Hi Len,
>
> I tested this patch from Thomas.
> This works fine for me.
>
> Could you please apply this on top of the old patch?
>
> Thanks,
> Durga
> --------------------------------------------
> thermal: Rename exported func generate_netlink_event to thermal_netlink_event
>
> Tested-by: Durgadoss R <durgadoss.r@intel.com>
> Signed-off-by: Thomas Renninger <trenn@suse.de>
> CC: R.Durgadoss <durgadoss.r@intel.com>
> CC: Len Brown <len.brown@intel.com>
>
Acked-by: Zhang Rui <rui.zhang@intel.com>
> ---
> drivers/thermal/thermal_sys.c | 8 ++++----
> include/linux/thermal.h | 2 +-
> 2 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/thermal/thermal_sys.c b/drivers/thermal/thermal_sys.c
> index 5bbacff..02283f3 100644
> --- a/drivers/thermal/thermal_sys.c
> +++ b/drivers/thermal/thermal_sys.c
> @@ -78,7 +78,7 @@ static struct genl_multicast_group thermal_event_mcgrp = {
> static int genetlink_init(void);
> static void genetlink_exit(void);
>
> -int generate_netlink_event(u32 orig, enum events event)
> +int thermal_netlink_event(u32 orig, enum events event)
> {
> struct sk_buff *skb;
> struct nlattr *attr;
> @@ -137,7 +137,7 @@ int generate_netlink_event(u32 orig, enum events event)
>
> return result;
> }
> -EXPORT_SYMBOL(generate_netlink_event);
> +EXPORT_SYMBOL(thermal_netlink_event);
>
> static int genetlink_init(void)
> {
> @@ -163,8 +163,8 @@ static void genetlink_exit(void)
>
> static void genetlink_exit(void) {};
> static int genetlink_init(void) { return 0; }
> -int generate_netlink_event(u32 orig, enum events event) { return 0; }
> -EXPORT_SYMBOL(generate_netlink_event);
> +int thermal_netlink_event(u32 orig, enum events event) { return 0; }
> +EXPORT_SYMBOL(thermal_netlink_event);
>
> #endif /* CONFIG_NET */
>
> diff --git a/include/linux/thermal.h b/include/linux/thermal.h
> index 1c31614..c24756e 100644
> --- a/include/linux/thermal.h
> +++ b/include/linux/thermal.h
> @@ -161,7 +161,7 @@ enum {
> };
> #define THERMAL_GENL_CMD_MAX (__THERMAL_GENL_CMD_MAX - 1)
> #endif
> -extern int generate_netlink_event(u32 orig, enum events event);
> +extern int thermal_netlink_event(u32 orig, enum events event);
>
> struct thermal_zone_device *thermal_zone_device_register(char *, int, void *,
> const struct thermal_zone_device_ops *, int tc1, int tc2,
> --
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-01-24 0:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-21 10:49 Rename exported func generate_netlink_event to thermal_netlink_event R, Durgadoss
2011-01-24 0:24 ` Zhang Rui
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox