mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-09 14:33:00 +00:00
95 lines
3.1 KiB
Diff
95 lines
3.1 KiB
Diff
|
From patchwork Sat Sep 17 20:28:58 2022
|
||
|
Content-Type: text/plain; charset="utf-8"
|
||
|
MIME-Version: 1.0
|
||
|
Content-Transfer-Encoding: 7bit
|
||
|
X-Patchwork-Submitter: Daniel Golle <daniel@makrotopia.org>
|
||
|
X-Patchwork-Id: 12979252
|
||
|
X-Patchwork-Delegate: kvalo@adurom.com
|
||
|
Return-Path: <linux-wireless-owner@kernel.org>
|
||
|
Date: Sat, 17 Sep 2022 21:28:58 +0100
|
||
|
From: Daniel Golle <daniel@makrotopia.org>
|
||
|
To: linux-wireless@vger.kernel.org, Stanislaw Gruszka <stf_xl@wp.pl>,
|
||
|
Helmut Schaa <helmut.schaa@googlemail.com>
|
||
|
Cc: Kalle Valo <kvalo@kernel.org>,
|
||
|
"David S. Miller" <davem@davemloft.net>,
|
||
|
Eric Dumazet <edumazet@google.com>,
|
||
|
Jakub Kicinski <kuba@kernel.org>,
|
||
|
Paolo Abeni <pabeni@redhat.com>,
|
||
|
Johannes Berg <johannes.berg@intel.com>
|
||
|
Subject: [PATCH v3 11/16] rt2x00: move helper functions up in file
|
||
|
Message-ID:
|
||
|
<c27baa8efd5c29e2bcb2432925d9cdc5c913a125.1663445157.git.daniel@makrotopia.org>
|
||
|
References: <cover.1663445157.git.daniel@makrotopia.org>
|
||
|
MIME-Version: 1.0
|
||
|
Content-Disposition: inline
|
||
|
In-Reply-To: <cover.1663445157.git.daniel@makrotopia.org>
|
||
|
Precedence: bulk
|
||
|
List-ID: <linux-wireless.vger.kernel.org>
|
||
|
X-Mailing-List: linux-wireless@vger.kernel.org
|
||
|
|
||
|
Move register access helper functions up to the head of the file so
|
||
|
they can be used in all functions.
|
||
|
|
||
|
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
||
|
Acked-by: Stanislaw Gruszka <stf_xl@wp.pl>
|
||
|
---
|
||
|
.../net/wireless/ralink/rt2x00/rt2800lib.c | 40 +++++++++----------
|
||
|
1 file changed, 20 insertions(+), 20 deletions(-)
|
||
|
|
||
|
--- a/drivers/net/wireless/ralink/rt2x00/rt2800lib.c
|
||
|
+++ b/drivers/net/wireless/ralink/rt2x00/rt2800lib.c
|
||
|
@@ -198,6 +198,26 @@ static void rt2800_rfcsr_write_dccal(str
|
||
|
rt2800_rfcsr_write_bank(rt2x00dev, 7, reg, value);
|
||
|
}
|
||
|
|
||
|
+static void rt2800_bbp_dcoc_write(struct rt2x00_dev *rt2x00dev,
|
||
|
+ const u8 reg, const u8 value)
|
||
|
+{
|
||
|
+ rt2800_bbp_write(rt2x00dev, 158, reg);
|
||
|
+ rt2800_bbp_write(rt2x00dev, 159, value);
|
||
|
+}
|
||
|
+
|
||
|
+static u8 rt2800_bbp_dcoc_read(struct rt2x00_dev *rt2x00dev, const u8 reg)
|
||
|
+{
|
||
|
+ rt2800_bbp_write(rt2x00dev, 158, reg);
|
||
|
+ return rt2800_bbp_read(rt2x00dev, 159);
|
||
|
+}
|
||
|
+
|
||
|
+static void rt2800_bbp_glrt_write(struct rt2x00_dev *rt2x00dev,
|
||
|
+ const u8 reg, const u8 value)
|
||
|
+{
|
||
|
+ rt2800_bbp_write(rt2x00dev, 195, reg);
|
||
|
+ rt2800_bbp_write(rt2x00dev, 196, value);
|
||
|
+}
|
||
|
+
|
||
|
static u8 rt2800_rfcsr_read(struct rt2x00_dev *rt2x00dev,
|
||
|
const unsigned int word)
|
||
|
{
|
||
|
@@ -6947,26 +6967,6 @@ static void rt2800_init_bbp_5592(struct
|
||
|
rt2800_bbp_write(rt2x00dev, 103, 0xc0);
|
||
|
}
|
||
|
|
||
|
-static void rt2800_bbp_glrt_write(struct rt2x00_dev *rt2x00dev,
|
||
|
- const u8 reg, const u8 value)
|
||
|
-{
|
||
|
- rt2800_bbp_write(rt2x00dev, 195, reg);
|
||
|
- rt2800_bbp_write(rt2x00dev, 196, value);
|
||
|
-}
|
||
|
-
|
||
|
-static void rt2800_bbp_dcoc_write(struct rt2x00_dev *rt2x00dev,
|
||
|
- const u8 reg, const u8 value)
|
||
|
-{
|
||
|
- rt2800_bbp_write(rt2x00dev, 158, reg);
|
||
|
- rt2800_bbp_write(rt2x00dev, 159, value);
|
||
|
-}
|
||
|
-
|
||
|
-static u8 rt2800_bbp_dcoc_read(struct rt2x00_dev *rt2x00dev, const u8 reg)
|
||
|
-{
|
||
|
- rt2800_bbp_write(rt2x00dev, 158, reg);
|
||
|
- return rt2800_bbp_read(rt2x00dev, 159);
|
||
|
-}
|
||
|
-
|
||
|
static void rt2800_init_bbp_6352(struct rt2x00_dev *rt2x00dev)
|
||
|
{
|
||
|
u8 bbp;
|