linux-staging.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Michael Straube <straube.linux@gmail.com>
To: gregkh@linuxfoundation.org
Cc: Larry.Finger@lwfinger.net, phil@philpotter.co.uk,
	linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org,
	Michael Straube <straube.linux@gmail.com>
Subject: [PATCH 06/47] staging: r8188eu: remove rtw_efuse_map_write()
Date: Wed, 22 Sep 2021 22:03:39 +0200	[thread overview]
Message-ID: <20210922200420.9693-7-straube.linux@gmail.com> (raw)
In-Reply-To: <20210922200420.9693-1-straube.linux@gmail.com>

Function rtw_efuse_map_write() is not used, remove it.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
---
 drivers/staging/r8188eu/core/rtw_efuse.c    | 91 ---------------------
 drivers/staging/r8188eu/include/rtw_efuse.h |  1 -
 2 files changed, 92 deletions(-)

diff --git a/drivers/staging/r8188eu/core/rtw_efuse.c b/drivers/staging/r8188eu/core/rtw_efuse.c
index 893287e50d9c..a55e4861054c 100644
--- a/drivers/staging/r8188eu/core/rtw_efuse.c
+++ b/drivers/staging/r8188eu/core/rtw_efuse.c
@@ -262,97 +262,6 @@ u8 rtw_BT_efuse_map_read(struct adapter *padapter, u16 addr, u16 cnts, u8 *data)
 	return _SUCCESS;
 }
 
-u8 rtw_efuse_map_write(struct adapter *padapter, u16 addr, u16 cnts, u8 *data)
-{
-	u8 offset, word_en;
-	u8 *map;
-	u8 newdata[PGPKT_DATA_SIZE + 1];
-	s32	i, idx;
-	u8 ret = _SUCCESS;
-	u16 mapLen = 0;
-
-	rtl8188e_EFUSE_GetEfuseDefinition(padapter, EFUSE_WIFI, TYPE_EFUSE_MAP_LEN, (void *)&mapLen, false);
-
-	if ((addr + cnts) > mapLen)
-		return _FAIL;
-
-	map = kzalloc(mapLen, GFP_KERNEL);
-	if (!map)
-		return _FAIL;
-
-	ret = rtw_efuse_map_read(padapter, 0, mapLen, map);
-	if (ret == _FAIL)
-		goto exit;
-
-	rtl8188e_EfusePowerSwitch(padapter, true, true);
-
-	offset = (addr >> 3);
-	word_en = 0xF;
-	memset(newdata, 0xFF, PGPKT_DATA_SIZE + 1);
-	i = addr & 0x7;	/*  index of one package */
-	idx = 0;	/*  data index */
-
-	if (i & 0x1) {
-		/*  odd start */
-		if (data[idx] != map[addr + idx]) {
-			word_en &= ~BIT(i >> 1);
-			newdata[i - 1] = map[addr + idx - 1];
-			newdata[i] = data[idx];
-		}
-		i++;
-		idx++;
-	}
-	do {
-		for (; i < PGPKT_DATA_SIZE; i += 2) {
-			if (cnts == idx)
-				break;
-			if ((cnts - idx) == 1) {
-				if (data[idx] != map[addr + idx]) {
-					word_en &= ~BIT(i >> 1);
-					newdata[i] = data[idx];
-					newdata[i + 1] = map[addr + idx + 1];
-				}
-				idx++;
-				break;
-			} else {
-				if ((data[idx] != map[addr + idx]) ||
-				    (data[idx + 1] != map[addr + idx + 1])) {
-					word_en &= ~BIT(i >> 1);
-					newdata[i] = data[idx];
-					newdata[i + 1] = data[idx + 1];
-				}
-				idx += 2;
-			}
-			if (idx == cnts)
-				break;
-		}
-
-		if (word_en != 0xF) {
-			ret = rtl8188e_Efuse_PgPacketWrite(padapter, offset, word_en, newdata, false);
-			DBG_88E("offset=%x\n", offset);
-			DBG_88E("word_en=%x\n", word_en);
-
-			for (i = 0; i < PGPKT_DATA_SIZE; i++)
-				DBG_88E("data=%x \t", newdata[i]);
-			if (ret == _FAIL)
-				break;
-		}
-
-		if (idx == cnts)
-			break;
-
-		offset++;
-		i = 0;
-		word_en = 0xF;
-		memset(newdata, 0xFF, PGPKT_DATA_SIZE);
-	} while (1);
-
-	rtl8188e_EfusePowerSwitch(padapter, true, false);
-exit:
-	kfree(map);
-	return ret;
-}
-
 /*-----------------------------------------------------------------------------
  * Function:	Efuse_ReadAllMap
  *
diff --git a/drivers/staging/r8188eu/include/rtw_efuse.h b/drivers/staging/r8188eu/include/rtw_efuse.h
index f0236a89d731..c7ce63985c7a 100644
--- a/drivers/staging/r8188eu/include/rtw_efuse.h
+++ b/drivers/staging/r8188eu/include/rtw_efuse.h
@@ -102,7 +102,6 @@ extern u8 fakeBTEfuseModifiedMap[];
 /*------------------------Export global variable----------------------------*/
 
 u8 rtw_efuse_map_read(struct adapter *adapter, u16 addr, u16 cnts, u8 *data);
-u8 rtw_efuse_map_write(struct adapter *adapter, u16 addr, u16 cnts, u8 *data);
 u8 rtw_BT_efuse_map_read(struct adapter *adapter, u16 addr,
 			 u16 cnts, u8 *data);
 u8 Efuse_CalculateWordCnts(u8 word_en);
-- 
2.33.0


  parent reply	other threads:[~2021-09-22 20:05 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-22 20:03 [PATCH 00/47] staging: r8188eu: remove unused functions Michael Straube
2021-09-22 20:03 ` [PATCH 01/47] staging: r8188eu: remove EFUSE_ShadowRead() Michael Straube
2021-09-22 20:03 ` [PATCH 02/47] staging: r8188eu: remove efuse_GetCurrentSize() Michael Straube
2021-09-22 20:03 ` [PATCH 03/47] staging: r8188eu: remove efuse_GetMaxSize() Michael Straube
2021-09-22 20:03 ` [PATCH 04/47] staging: r8188eu: remove rtw_BT_efuse_map_write() Michael Straube
2021-09-22 20:03 ` [PATCH 05/47] staging: r8188eu: remove rtw_efuse_access() Michael Straube
2021-09-22 20:03 ` Michael Straube [this message]
2021-09-22 20:03 ` [PATCH 07/47] staging: r8188eu: remove rtw_BT_efuse_map_read() Michael Straube
2021-09-22 20:03 ` [PATCH 08/47] staging: r8188eu: remove rtw_efuse_map_read() Michael Straube
2021-09-22 20:03 ` [PATCH 09/47] staging: r8188eu: remove _rtw_dequeue_network() Michael Straube
2021-09-22 20:03 ` [PATCH 10/47] staging: r8188eu: remove _rtw_enqueue_network() Michael Straube
2021-09-22 20:03 ` [PATCH 11/47] staging: r8188eu: remove rtw_get_timestampe_from_ie() Michael Straube
2021-09-22 20:03 ` [PATCH 12/47] staging: r8188eu: remove rtw_scan_abort() Michael Straube
2021-09-22 20:03 ` [PATCH 13/47] staging: r8188eu: remove issue_action_spct_ch_switch() Michael Straube
2021-09-22 20:03 ` [PATCH 14/47] staging: r8188eu: remove issue_probereq_p2p_ex() Michael Straube
2021-09-22 20:03 ` [PATCH 15/47] staging: r8188eu: remove sreset_get_wifi_status() Michael Straube
2021-09-22 20:03 ` [PATCH 16/47] staging: r8188eu: remove build_deauth_p2p_ie() Michael Straube
2021-09-22 20:03 ` [PATCH 17/47] staging: r8188eu: remove rtw_freq2ch() Michael Straube
2021-09-22 20:03 ` [PATCH 18/47] staging: r8188eu: remove rtw_set_802_11_add_key() Michael Straube
2021-09-22 20:03 ` [PATCH 19/47] staging: r8188eu: remove rtw_set_802_11_remove_key() Michael Straube
2021-09-22 20:03 ` [PATCH 20/47] staging: r8188eu: remove rtw_set_802_11_remove_wep() Michael Straube
2021-09-22 20:03 ` [PATCH 21/47] staging: r8188eu: remove rtw_set_country() Michael Straube
2021-09-22 20:03 ` [PATCH 22/47] staging: r8188eu: remove rtw_set_scan_mode() Michael Straube
2021-09-22 20:03 ` [PATCH 23/47] staging: r8188eu: remove rtw_validate_ssid() Michael Straube
2021-09-22 20:03 ` [PATCH 24/47] staging: r8188eu: remove rtw_set_channel_plan() Michael Straube
2021-09-22 20:03 ` [PATCH 25/47] staging: r8188eu: remove rtw_atoi() Michael Straube
2021-09-22 20:03 ` [PATCH 26/47] staging: r8188eu: remove rtw_cbuf_push() Michael Straube
2021-09-22 20:04 ` [PATCH 27/47] staging: r8188eu: remove rtw_cbuf_full() Michael Straube
2021-09-22 20:04 ` [PATCH 28/47] staging: r8188eu: remove rtw_os_read_port() Michael Straube
2021-09-22 20:04 ` [PATCH 29/47] staging: r8188eu: remove rtw_IOL_cmd_buf_dump() Michael Straube
2021-09-22 20:04 ` [PATCH 30/47] staging: r8188eu: remove action_public_str() Michael Straube
2021-09-22 20:04 ` [PATCH 31/47] staging: r8188eu: remove dump_ies() Michael Straube
2021-09-22 20:04 ` [PATCH 32/47] staging: r8188eu: remove hal_ch_offset_to_secondary_ch_offset() Michael Straube
2021-09-22 20:04 ` [PATCH 33/47] staging: r8188eu: remove secondary_ch_offset_to_hal_ch_offset() Michael Straube
2021-09-22 20:04 ` [PATCH 34/47] staging: r8188eu: remove ieee80211_get_hdrlen() Michael Straube
2021-09-22 20:04 ` [PATCH 35/47] staging: r8188eu: remove ieee80211_is_empty_essid() Michael Straube
2021-09-22 20:04 ` [PATCH 36/47] staging: r8188eu: remove rtw_action_frame_parse() Michael Straube
2021-09-22 20:04 ` [PATCH 37/47] staging: r8188eu: remove rtw_ies_remove_ie() Michael Straube
2021-09-22 20:04 ` [PATCH 38/47] staging: r8188eu: remove rtw_set_ie_ch_switch() Michael Straube
2021-09-22 20:04 ` [PATCH 39/47] staging: r8188eu: remove rtw_set_ie_mesh_ch_switch_parm() Michael Straube
2021-09-22 20:04 ` [PATCH 40/47] staging: r8188eu: remove rtw_set_ie_secondary_ch_offset() Michael Straube
2021-09-22 20:04 ` [PATCH 41/47] staging: r8188eu: remove enum secondary_ch_offset Michael Straube
2021-09-22 20:04 ` [PATCH 42/47] staging: r8188eu: remove rtw_dequeue_recvbuf() Michael Straube
2021-09-22 20:04 ` [PATCH 43/47] staging: r8188eu: remove rtw_enqueue_recvbuf() Michael Straube
2021-09-22 20:04 ` [PATCH 44/47] staging: r8188eu: remove rtw_enqueue_recvbuf_to_head() Michael Straube
2021-09-22 20:04 ` [PATCH 45/47] staging: r8188eu: remove rtw_init_recvframe() Michael Straube
2021-09-22 20:04 ` [PATCH 46/47] staging: r8188eu: remove rtw_calculate_wlan_pkt_size_by_attribue() Michael Straube
2021-09-22 20:04 ` [PATCH 47/47] staging: r8188eu: remove rtw_sctx_done() Michael Straube

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=20210922200420.9693-7-straube.linux@gmail.com \
    --to=straube.linux@gmail.com \
    --cc=Larry.Finger@lwfinger.net \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-staging@lists.linux.dev \
    --cc=phil@philpotter.co.uk \
    /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).