// SPDX-License-Identifier: GPL-2.0-only /* * Linux RFKILL support for RTL8187 * * Copyright (c) 2009 Herton Ronaldo Krzesinski <[email protected]> * * Based on the RFKILL handling in the r8187 driver, which is: * Copyright (c) Realtek Semiconductor Corp. All rights reserved. * * Thanks to Realtek for their support! */ #include <linux/types.h> #include <linux/usb.h> #include <net/mac80211.h> #include "rtl8187.h" #include "rfkill.h" static bool rtl8187_is_radio_enabled(struct rtl8187_priv *priv) { … } void rtl8187_rfkill_init(struct ieee80211_hw *hw) { … } void rtl8187_rfkill_poll(struct ieee80211_hw *hw) { … } void rtl8187_rfkill_exit(struct ieee80211_hw *hw) { … }