Commit d273bb20 authored by Larry Finger's avatar Larry Finger Committed by John W. Linville

rtlwifi: Move pr_fmt macros to a single location

Although the rtlwifi family of devices contains 11 copies of the pr_fmt
macro, the macro is not defined for all routines that need it. By moving
the macro to wifi.h, a single copy is available for all routines.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 608383bf
...@@ -27,10 +27,6 @@ ...@@ -27,10 +27,6 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/ip.h>
#include <linux/module.h>
#include "wifi.h" #include "wifi.h"
#include "rc.h" #include "rc.h"
#include "base.h" #include "base.h"
...@@ -39,6 +35,9 @@ ...@@ -39,6 +35,9 @@
#include "ps.h" #include "ps.h"
#include "regd.h" #include "regd.h"
#include <linux/ip.h>
#include <linux/module.h>
/* /*
*NOTICE!!!: This file will be very big, we hsould *NOTICE!!!: This file will be very big, we hsould
*keep it clear under follwing roles: *keep it clear under follwing roles:
......
...@@ -27,8 +27,6 @@ ...@@ -27,8 +27,6 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/export.h> #include <linux/export.h>
#include "wifi.h" #include "wifi.h"
#include "cam.h" #include "cam.h"
......
...@@ -30,8 +30,6 @@ ...@@ -30,8 +30,6 @@
#ifndef __RTL_CORE_H__ #ifndef __RTL_CORE_H__
#define __RTL_CORE_H__ #define __RTL_CORE_H__
#include <net/mac80211.h>
#define RTL_SUPPORTED_FILTERS \ #define RTL_SUPPORTED_FILTERS \
(FIF_PROMISC_IN_BSS | \ (FIF_PROMISC_IN_BSS | \
FIF_ALLMULTI | FIF_CONTROL | \ FIF_ALLMULTI | FIF_CONTROL | \
......
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
#include "wifi.h" #include "wifi.h"
#include <linux/moduleparam.h>
void rtl_dbgp_flag_init(struct ieee80211_hw *hw) void rtl_dbgp_flag_init(struct ieee80211_hw *hw)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
......
...@@ -27,13 +27,13 @@ ...@@ -27,13 +27,13 @@
* *
*****************************************************************************/ *****************************************************************************/
#include <linux/export.h>
#include "core.h"
#include "wifi.h" #include "wifi.h"
#include "core.h"
#include "pci.h" #include "pci.h"
#include "base.h" #include "base.h"
#include "ps.h" #include "ps.h"
#include "efuse.h" #include "efuse.h"
#include <linux/export.h>
static const u16 pcibridge_vendors[PCI_BRIDGE_VENDOR_MAX] = { static const u16 pcibridge_vendors[PCI_BRIDGE_VENDOR_MAX] = {
PCI_VENDOR_ID_INTEL, PCI_VENDOR_ID_INTEL,
......
...@@ -27,16 +27,13 @@ ...@@ -27,16 +27,13 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/firmware.h>
#include <linux/export.h>
#include "../wifi.h" #include "../wifi.h"
#include "../pci.h" #include "../pci.h"
#include "../base.h" #include "../base.h"
#include "../rtl8192ce/reg.h" #include "../rtl8192ce/reg.h"
#include "../rtl8192ce/def.h" #include "../rtl8192ce/def.h"
#include "fw_common.h" #include "fw_common.h"
#include <linux/export.h>
static void _rtl92c_enable_fw_download(struct ieee80211_hw *hw, bool enable) static void _rtl92c_enable_fw_download(struct ieee80211_hw *hw, bool enable)
{ {
......
...@@ -27,8 +27,8 @@ ...@@ -27,8 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#include <linux/module.h>
#include "../wifi.h" #include "../wifi.h"
#include <linux/module.h>
MODULE_AUTHOR("lizhaoming <chaoming_li@realsil.com.cn>"); MODULE_AUTHOR("lizhaoming <chaoming_li@realsil.com.cn>");
......
...@@ -27,9 +27,6 @@ ...@@ -27,9 +27,6 @@
* *
*****************************************************************************/ *****************************************************************************/
#include <linux/vmalloc.h>
#include <linux/module.h>
#include "../wifi.h" #include "../wifi.h"
#include "../core.h" #include "../core.h"
#include "../pci.h" #include "../pci.h"
...@@ -43,6 +40,8 @@ ...@@ -43,6 +40,8 @@
#include "trx.h" #include "trx.h"
#include "led.h" #include "led.h"
#include <linux/module.h>
static void rtl92c_init_aspm_vars(struct ieee80211_hw *hw) static void rtl92c_init_aspm_vars(struct ieee80211_hw *hw)
{ {
struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
......
...@@ -27,8 +27,6 @@ ...@@ -27,8 +27,6 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include "../wifi.h" #include "../wifi.h"
#include "../efuse.h" #include "../efuse.h"
#include "../base.h" #include "../base.h"
......
...@@ -27,10 +27,6 @@ ...@@ -27,10 +27,6 @@
* *
****************************************************************************/ ****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h>
#include "../wifi.h" #include "../wifi.h"
#include "../pci.h" #include "../pci.h"
#include "../usb.h" #include "../usb.h"
...@@ -44,6 +40,8 @@ ...@@ -44,6 +40,8 @@
#include "mac.h" #include "mac.h"
#include "trx.h" #include "trx.h"
#include <linux/module.h>
/* macro to shorten lines */ /* macro to shorten lines */
#define LINK_Q ui_link_quality #define LINK_Q ui_link_quality
......
...@@ -41,7 +41,6 @@ ...@@ -41,7 +41,6 @@
#include "trx.h" #include "trx.h"
#include "led.h" #include "led.h"
#include "hw.h" #include "hw.h"
#include <linux/vmalloc.h>
#include <linux/module.h> #include <linux/module.h>
MODULE_AUTHOR("Georgia <georgia@realtek.com>"); MODULE_AUTHOR("Georgia <georgia@realtek.com>");
......
...@@ -27,11 +27,6 @@ ...@@ -27,11 +27,6 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/vmalloc.h>
#include <linux/module.h>
#include "../wifi.h" #include "../wifi.h"
#include "../core.h" #include "../core.h"
#include "../pci.h" #include "../pci.h"
...@@ -44,6 +39,8 @@ ...@@ -44,6 +39,8 @@
#include "trx.h" #include "trx.h"
#include "led.h" #include "led.h"
#include <linux/module.h>
static void rtl92d_init_aspm_vars(struct ieee80211_hw *hw) static void rtl92d_init_aspm_vars(struct ieee80211_hw *hw)
{ {
struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
......
...@@ -27,8 +27,6 @@ ...@@ -27,8 +27,6 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include "../wifi.h" #include "../wifi.h"
#include "../efuse.h" #include "../efuse.h"
#include "../base.h" #include "../base.h"
......
...@@ -27,8 +27,6 @@ ...@@ -27,8 +27,6 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include "../wifi.h" #include "../wifi.h"
#include "../pci.h" #include "../pci.h"
#include "../ps.h" #include "../ps.h"
......
...@@ -27,8 +27,6 @@ ...@@ -27,8 +27,6 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include "../wifi.h" #include "../wifi.h"
#include "reg.h" #include "reg.h"
#include "def.h" #include "def.h"
......
...@@ -27,11 +27,6 @@ ...@@ -27,11 +27,6 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/vmalloc.h>
#include <linux/module.h>
#include "../wifi.h" #include "../wifi.h"
#include "../core.h" #include "../core.h"
#include "../pci.h" #include "../pci.h"
...@@ -45,6 +40,8 @@ ...@@ -45,6 +40,8 @@
#include "trx.h" #include "trx.h"
#include "led.h" #include "led.h"
#include <linux/module.h>
static void rtl92s_init_aspm_vars(struct ieee80211_hw *hw) static void rtl92s_init_aspm_vars(struct ieee80211_hw *hw)
{ {
struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
......
...@@ -25,16 +25,13 @@ ...@@ -25,16 +25,13 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/usb.h>
#include <linux/export.h>
#include "core.h"
#include "wifi.h" #include "wifi.h"
#include "core.h"
#include "usb.h" #include "usb.h"
#include "base.h" #include "base.h"
#include "ps.h" #include "ps.h"
#include "rtl8192c/fw_common.h" #include "rtl8192c/fw_common.h"
#include <linux/export.h>
#define REALTEK_USB_VENQT_READ 0xC0 #define REALTEK_USB_VENQT_READ 0xC0
#define REALTEK_USB_VENQT_WRITE 0x40 #define REALTEK_USB_VENQT_WRITE 0x40
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
#ifndef __RTL_USB_H__ #ifndef __RTL_USB_H__
#define __RTL_USB_H__ #define __RTL_USB_H__
#include <linux/usb.h>
#include <linux/skbuff.h> #include <linux/skbuff.h>
#define RTL_RX_DESC_SIZE 24 #define RTL_RX_DESC_SIZE 24
......
...@@ -30,6 +30,8 @@ ...@@ -30,6 +30,8 @@
#ifndef __RTL_WIFI_H__ #ifndef __RTL_WIFI_H__
#define __RTL_WIFI_H__ #define __RTL_WIFI_H__
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/firmware.h> #include <linux/firmware.h>
#include <linux/etherdevice.h> #include <linux/etherdevice.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment