diff options
author | Srikant Patnaik | 2015-01-11 12:28:04 +0530 |
---|---|---|
committer | Srikant Patnaik | 2015-01-11 12:28:04 +0530 |
commit | 871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch) | |
tree | 8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/drivers/net/wireless/b43legacy/leds.h | |
parent | 9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff) | |
download | FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2 FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip |
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized.
Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/drivers/net/wireless/b43legacy/leds.h')
-rw-r--r-- | ANDROID_3.4.5/drivers/net/wireless/b43legacy/leds.h | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/ANDROID_3.4.5/drivers/net/wireless/b43legacy/leds.h b/ANDROID_3.4.5/drivers/net/wireless/b43legacy/leds.h deleted file mode 100644 index 9ff6750d..00000000 --- a/ANDROID_3.4.5/drivers/net/wireless/b43legacy/leds.h +++ /dev/null @@ -1,63 +0,0 @@ -#ifndef B43legacy_LEDS_H_ -#define B43legacy_LEDS_H_ - -struct b43legacy_wldev; - -#ifdef CONFIG_B43LEGACY_LEDS - -#include <linux/types.h> -#include <linux/leds.h> - - -#define B43legacy_LED_MAX_NAME_LEN 31 - -struct b43legacy_led { - struct b43legacy_wldev *dev; - /* The LED class device */ - struct led_classdev led_dev; - /* The index number of the LED. */ - u8 index; - /* If activelow is true, the LED is ON if the - * bit is switched off. */ - bool activelow; - /* The unique name string for this LED device. */ - char name[B43legacy_LED_MAX_NAME_LEN + 1]; -}; - -#define B43legacy_LED_BEHAVIOUR 0x7F -#define B43legacy_LED_ACTIVELOW 0x80 -/* LED behaviour values */ -enum b43legacy_led_behaviour { - B43legacy_LED_OFF, - B43legacy_LED_ON, - B43legacy_LED_ACTIVITY, - B43legacy_LED_RADIO_ALL, - B43legacy_LED_RADIO_A, - B43legacy_LED_RADIO_B, - B43legacy_LED_MODE_BG, - B43legacy_LED_TRANSFER, - B43legacy_LED_APTRANSFER, - B43legacy_LED_WEIRD, - B43legacy_LED_ASSOC, - B43legacy_LED_INACTIVE, -}; - -void b43legacy_leds_init(struct b43legacy_wldev *dev); -void b43legacy_leds_exit(struct b43legacy_wldev *dev); - -#else /* CONFIG_B43LEGACY_LEDS */ -/* LED support disabled */ - -struct b43legacy_led { - /* empty */ -}; - -static inline void b43legacy_leds_init(struct b43legacy_wldev *dev) -{ -} -static inline void b43legacy_leds_exit(struct b43legacy_wldev *dev) -{ -} -#endif /* CONFIG_B43LEGACY_LEDS */ - -#endif /* B43legacy_LEDS_H_ */ |