1 /* SPDX-License-Identifier: GPL-2.0-only */
10 #include <linux/leds.h>
11 #include <linux/netdevice.h>
20 #ifdef CONFIG_CAN_LEDS
22 /* keep space for interface name + "-tx"/"-rx"/"-rxtx"
23 * suffix and null terminator
25 #define CAN_LED_NAME_SZ (IFNAMSIZ + 6)
27 void can_led_event(struct net_device *netdev, enum can_led_event event);
28 void devm_can_led_init(struct net_device *netdev);
29 int __init can_led_notifier_init(void);
30 void __exit can_led_notifier_exit(void);
34 static inline void can_led_event(struct net_device *netdev,
35 enum can_led_event event)
38 static inline void devm_can_led_init(struct net_device *netdev)
41 static inline int can_led_notifier_init(void)
45 static inline void can_led_notifier_exit(void)
51 #endif /* !_CAN_LED_H */