linux/drivers/net/wireless/realtek/rtl818x/rtl8187/leds.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Linux LED driver for RTL8187
 *
 * 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.
 *
 * Thanks to Realtek for their support!
 */

#ifdef CONFIG_RTL8187_LEDS

#include <net/mac80211.h>
#include <linux/usb.h>
#include <linux/eeprom_93cx6.h>

#include "rtl8187.h"
#include "leds.h"

static void led_turn_on(struct work_struct *work)
{}

static void led_turn_off(struct work_struct *work)
{}

/* Callback from the LED subsystem. */
static void rtl8187_led_brightness_set(struct led_classdev *led_dev,
				   enum led_brightness brightness)
{}

static int rtl8187_register_led(struct ieee80211_hw *dev,
				struct rtl8187_led *led, const char *name,
				const char *default_trigger, u8 ledpin,
				bool is_radio)
{}

static void rtl8187_unregister_led(struct rtl8187_led *led)
{}

void rtl8187_leds_init(struct ieee80211_hw *dev, u16 custid)
{}

void rtl8187_leds_exit(struct ieee80211_hw *dev)
{}
#endif /* def CONFIG_RTL8187_LEDS */