mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

fw.c contains a function for loading the firmware. led.c contains a function for controlling the LED. Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Link: https://msgid.link/a52b8907-267c-4811-90ca-5eb852a2aa09@gmail.com
10 lines
237 B
C
10 lines
237 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Copyright(c) 2024 Realtek Corporation.*/
|
|
|
|
#include "../wifi.h"
|
|
#include "led.h"
|
|
|
|
void rtl92du_led_control(struct ieee80211_hw *hw, enum led_ctl_mode ledaction)
|
|
{
|
|
/* The hardware has control. */
|
|
}
|