Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8188eu: Remove file rtl8188e_rf.h

Move macros from rtl8188e_rf.h to rf.h and then remove rtl8188e_rf.h .

Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

navin patidar and committed by
Greg Kroah-Hartman
6b361e58 d8571352

+4 -33
+1
drivers/staging/rtl8188eu/hal/rtl8188e_rf6052.c
··· 20 20 #include <osdep_service.h> 21 21 #include <drv_types.h> 22 22 #include <phy.h> 23 + #include <rf.h> 23 24 #include <rtl8188e_hal.h> 24 25 25 26 void rtl88eu_phy_rf6052_set_bandwidth(struct adapter *adapt,
+3
drivers/staging/rtl8188eu/include/rf.h
··· 1 + #define RF6052_MAX_TX_PWR 0x3F 2 + #define RF6052_MAX_REG 0x3F 3 + 1 4 void rtl88eu_phy_rf6052_set_bandwidth(struct adapter *adapt, 2 5 enum ht_channel_width bandwidth); 3 6 void rtl88eu_phy_rf6052_set_cck_txpower(struct adapter *adapt,
-1
drivers/staging/rtl8188eu/include/rtl8188e_hal.h
··· 25 25 #include "rtl8188e_spec.h" 26 26 #include "Hal8188EPhyReg.h" 27 27 #include "Hal8188EPhyCfg.h" 28 - #include "rtl8188e_rf.h" 29 28 #include "rtl8188e_dm.h" 30 29 #include "rtl8188e_recv.h" 31 30 #include "rtl8188e_xmit.h"
-32
drivers/staging/rtl8188eu/include/rtl8188e_rf.h
··· 1 - /****************************************************************************** 2 - * 3 - * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. 4 - * 5 - * This program is free software; you can redistribute it and/or modify it 6 - * under the terms of version 2 of the GNU General Public License as 7 - * published by the Free Software Foundation. 8 - * 9 - * This program is distributed in the hope that it will be useful, but WITHOUT 10 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 - * more details. 13 - * 14 - * You should have received a copy of the GNU General Public License along with 15 - * this program; if not, write to the Free Software Foundation, Inc., 16 - * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA 17 - * 18 - * 19 - ******************************************************************************/ 20 - #ifndef __RTL8188E_RF_H__ 21 - #define __RTL8188E_RF_H__ 22 - 23 - #define RF6052_MAX_TX_PWR 0x3F 24 - #define RF6052_MAX_REG 0x3F 25 - #define RF6052_MAX_PATH 2 26 - 27 - 28 - void rtl8188e_RF_ChangeTxPath(struct adapter *Adapter, u16 DataRate); 29 - void rtl8188e_PHY_RF6052SetBandwidth(struct adapter *Adapter, 30 - enum ht_channel_width Bandwidth); 31 - 32 - #endif/* __RTL8188E_RF_H__ */