aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/can
diff options
context:
space:
mode:
authorKurt Van Dijck <kurt.van.dijck@eia.be>2012-12-18 12:50:57 -0500
committerMarc Kleine-Budde <mkl@pengutronix.de>2013-01-26 10:58:59 -0500
commita1ef7bd9fce8aba8e4701e60208148fb3bc9bdd4 (patch)
tree0b9008a80fdbe8304f1983980996117024ebc96a /include/linux/can
parentbf03a5379cd3492fbeca42111340581ba9dee0b8 (diff)
can: rename LED trigger name on netdev renames
The LED trigger name for CAN devices is based on the initial CAN device name, but does never change. The LED trigger name is not guaranteed to be unique in case of hotplugging CAN devices. This patch tries to address this problem by modifying the LED trigger name according to the CAN device name when the latter changes. v1 - Kurt Van Dijck v2 - Fabio Baltieri - remove rename blocking if trigger is bound - use led-subsystem function for the actual rename (still WiP) - call init/exit functions from dev.c v3 - Kurt Van Dijck - safe operation for non-candev based devices (vcan, slcan) based on earlier patch v4 - Kurt Van Dijck - trivial patch mistakes fixed Signed-off-by: Kurt Van Dijck <kurt.van.dijck@eia.be> Signed-off-by: Fabio Baltieri <fabio.baltieri@gmail.com> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'include/linux/can')
-rw-r--r--include/linux/can/led.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/can/led.h b/include/linux/can/led.h
index 12d5549abb95..9c1167baf273 100644
--- a/include/linux/can/led.h
+++ b/include/linux/can/led.h
@@ -26,6 +26,8 @@ enum can_led_event {
26 26
27void can_led_event(struct net_device *netdev, enum can_led_event event); 27void can_led_event(struct net_device *netdev, enum can_led_event event);
28void devm_can_led_init(struct net_device *netdev); 28void devm_can_led_init(struct net_device *netdev);
29int __init can_led_notifier_init(void);
30void __exit can_led_notifier_exit(void);
29 31
30#else 32#else
31 33
@@ -36,6 +38,13 @@ static inline void can_led_event(struct net_device *netdev,
36static inline void devm_can_led_init(struct net_device *netdev) 38static inline void devm_can_led_init(struct net_device *netdev)
37{ 39{
38} 40}
41static inline int can_led_notifier_init(void)
42{
43 return 0;
44}
45static inline void can_led_notifier_exit(void)
46{
47}
39 48
40#endif 49#endif
41 50