netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Amadeusz Sławiński" <amade@asmblr.net>
To: Ping-Ke Shih <pkshih@realtek.com>, Kalle Valo <kvalo@codeaurora.org>
Cc: "David S . Miller" <davem@davemloft.net>,
	"Larry Finger" <Larry.Finger@lwfinger.net>,
	linux-kernel@vger.kernel.org, linux-wireless@vger.kernel.org,
	netdev@vger.kernel.org, "Amadeusz Sławiński" <amade@asmblr.net>
Subject: [PATCH 4/9] rtlwifi: rtl8192cu: Remove sw.h header
Date: Mon, 23 Dec 2019 13:37:10 +0100	[thread overview]
Message-ID: <20191223123715.7177-5-amade@asmblr.net> (raw)
In-Reply-To: <20191223123715.7177-1-amade@asmblr.net>

It has one define, which is already defined in include from reg.h.
All functions are declared in their own headers and included in *.c
files belonging to them.
This makes sw.h unnecessary, so we can remove it.

Signed-off-by: Amadeusz Sławiński <amade@asmblr.net>
---
 .../wireless/realtek/rtlwifi/rtl8192cu/sw.c   |  1 -
 .../wireless/realtek/rtlwifi/rtl8192cu/sw.h   | 27 -------------------
 2 files changed, 28 deletions(-)
 delete mode 100644 drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.h

diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c
index 6b954059e830..b53daf1b29f7 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c
@@ -12,7 +12,6 @@
 #include "mac.h"
 #include "dm.h"
 #include "rf.h"
-#include "sw.h"
 #include "trx.h"
 #include "led.h"
 #include "hw.h"
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.h b/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.h
deleted file mode 100644
index 662440c4cdc9..000000000000
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-/* Copyright(c) 2009-2012  Realtek Corporation.*/
-
-#ifndef __RTL92CU_SW_H__
-#define __RTL92CU_SW_H__
-
-#define EFUSE_MAX_SECTION	16
-
-void rtl92cu_phy_rf6052_set_cck_txpower(struct ieee80211_hw *hw,
-					u8 *powerlevel);
-void rtl92cu_phy_rf6052_set_ofdm_txpower(struct ieee80211_hw *hw,
-					u8 *ppowerlevel, u8 channel);
-bool _rtl92cu_phy_config_bb_with_headerfile(struct ieee80211_hw *hw,
-					    u8 configtype);
-bool _rtl92cu_phy_config_bb_with_pgheaderfile(struct ieee80211_hw *hw,
-						    u8 configtype);
-void _rtl92cu_phy_lc_calibrate(struct ieee80211_hw *hw, bool is2t);
-void rtl92cu_phy_set_rf_reg(struct ieee80211_hw *hw,
-			   enum radio_path rfpath,
-			   u32 regaddr, u32 bitmask, u32 data);
-bool rtl92cu_phy_set_rf_power_state(struct ieee80211_hw *hw,
-				   enum rf_pwrstate rfpwr_state);
-u32 rtl92cu_phy_query_rf_reg(struct ieee80211_hw *hw,
-			    enum radio_path rfpath, u32 regaddr, u32 bitmask);
-void rtl92cu_phy_set_bw_mode_callback(struct ieee80211_hw *hw);
-
-#endif
-- 
2.24.1


  parent reply	other threads:[~2019-12-23 13:31 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-23 12:37 [PATCH 0/9] rtlwifi: Cleanups Amadeusz Sławiński
2019-12-23 12:37 ` [PATCH 1/9] rtlwifi: rtl8192cu: Fix typo Amadeusz Sławiński
2020-01-26 15:40   ` Kalle Valo
2019-12-23 12:37 ` [PATCH 2/9] rtlwifi: rtl8188ee: Make functions static & rm sw.h Amadeusz Sławiński
2019-12-23 12:37 ` [PATCH 3/9] rtlwifi: rtl8192ce: " Amadeusz Sławiński
2019-12-23 12:37 ` Amadeusz Sławiński [this message]
2019-12-23 12:37 ` [PATCH 5/9] rtlwifi: rtl8192ee: " Amadeusz Sławiński
2019-12-23 12:37 ` [PATCH 6/9] rtlwifi: rtl8192se: Remove sw.h header Amadeusz Sławiński
2019-12-23 12:37 ` [PATCH 7/9] rtlwifi: rtl8723ae: Make functions static & rm sw.h Amadeusz Sławiński
2019-12-23 12:37 ` [PATCH 8/9] rtlwifi: rtl8723be: " Amadeusz Sławiński
2019-12-23 12:37 ` [PATCH 9/9] rtlwifi: rtl8821ae: " Amadeusz Sławiński
2019-12-24  1:57 ` [PATCH 0/9] rtlwifi: Cleanups Pkshih

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191223123715.7177-5-amade@asmblr.net \
    --to=amade@asmblr.net \
    --cc=Larry.Finger@lwfinger.net \
    --cc=davem@davemloft.net \
    --cc=kvalo@codeaurora.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pkshih@realtek.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).