diff options
author | Jean Delvare <khali@linux-fr.org> | 2011-11-04 10:31:04 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-01-23 03:15:25 -0500 |
commit | 2d58d7ea9164da59d0ea82fdf80e3ababe52d58c (patch) | |
tree | acdb69c02ff8ceac746f2b82eb01d35b17ef879b /include/linux/thermal.h | |
parent | dcd6c92267155e70a94b3927bce681ce74b80d1f (diff) | |
download | talos-op-linux-2d58d7ea9164da59d0ea82fdf80e3ababe52d58c.tar.gz talos-op-linux-2d58d7ea9164da59d0ea82fdf80e3ababe52d58c.zip |
thermal: Rename generate_netlink_event
It doesn't seem right for the thermal subsystem to export a symbol
named generate_netlink_event. This function is thermal-specific and
its name should reflect that fact. Rename it to
thermal_generate_netlink_event.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
Acked-by: R.Durgadoss <durgadoss.r@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/linux/thermal.h')
-rw-r--r-- | include/linux/thermal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/thermal.h b/include/linux/thermal.h index 47b4a27e6e97..796f1ff0388c 100644 --- a/include/linux/thermal.h +++ b/include/linux/thermal.h @@ -152,9 +152,9 @@ struct thermal_cooling_device *thermal_cooling_device_register(char *, void *, void thermal_cooling_device_unregister(struct thermal_cooling_device *); #ifdef CONFIG_NET -extern int generate_netlink_event(u32 orig, enum events event); +extern int thermal_generate_netlink_event(u32 orig, enum events event); #else -static inline int generate_netlink_event(u32 orig, enum events event) +static inline int thermal_generate_netlink_event(u32 orig, enum events event) { return 0; } |