/* SPDX-License-Identifier: GPL-2.0-only */ /* * Definitions for RTL8187 leds * * Copyright 2009 Larry Finger <[email protected]> * * Based on the LED handling in the r8187 driver, which is: * Copyright (c) Realtek Semiconductor Corp. All rights reserved. */ #ifndef RTL8187_LED_H #define RTL8187_LED_H #ifdef CONFIG_RTL8187_LEDS #define RTL8187_LED_MAX_NAME_LEN … #include <linux/leds.h> #include <linux/types.h> enum { … }; enum { … }; struct rtl8187_led { … }; void rtl8187_leds_init(struct ieee80211_hw *dev, u16 code); void rtl8187_leds_exit(struct ieee80211_hw *dev); #endif /* def CONFIG_RTL8187_LEDS */ #endif /* RTL8187_LED_H */