cregit-Linux how code gets into the kernel

Release 4.12 include/linux/can/led.h

/*
 * Copyright 2012, Fabio Baltieri <fabio.baltieri@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef _CAN_LED_H

#define _CAN_LED_H

#include <linux/if.h>
#include <linux/leds.h>
#include <linux/netdevice.h>


enum can_led_event {
	
CAN_LED_EVENT_OPEN,
	
CAN_LED_EVENT_STOP,
	
CAN_LED_EVENT_TX,
	
CAN_LED_EVENT_RX,
};

#ifdef CONFIG_CAN_LEDS

/* keep space for interface name + "-tx"/"-rx"/"-rxtx"
 * suffix and null terminator
 */

#define CAN_LED_NAME_SZ (IFNAMSIZ + 6)

void can_led_event(struct net_device *netdev, enum can_led_event event);
void devm_can_led_init(struct net_device *netdev);
int __init can_led_notifier_init(void);
void __exit can_led_notifier_exit(void);

#else


static inline void can_led_event(struct net_device *netdev, enum can_led_event event) { }

Contributors

PersonTokensPropCommitsCommitProp
Fabio Baltieri15100.00%1100.00%
Total15100.00%1100.00%


static inline void devm_can_led_init(struct net_device *netdev) { }

Contributors

PersonTokensPropCommitsCommitProp
Fabio Baltieri11100.00%1100.00%
Total11100.00%1100.00%


static inline int can_led_notifier_init(void) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Kurt Van Dijck12100.00%1100.00%
Total12100.00%1100.00%


static inline void can_led_notifier_exit(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Kurt Van Dijck8100.00%1100.00%
Total8100.00%1100.00%

#endif #endif /* !_CAN_LED_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Fabio Baltieri8366.40%120.00%
Kurt Van Dijck3427.20%120.00%
Marc Kleine-Budde32.40%120.00%
Oliver Hartkopp32.40%120.00%
Yegor Yefremov21.60%120.00%
Total125100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.