Staging: rtl8723au: Remove unused EFUSE_Write1Byte function
authorKsenija Stanojevic <ksenija.stanojevic@gmail.com>
Thu, 29 Oct 2015 20:42:38 +0000 (13:42 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
Function is defined but not used, so remove it.

Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_efuse.c

index 906b5782d1658c07994bcdcd63feb388544157cd..5e8a1ba8a8b9988b576acfe0d3d9f4f2b6c177b3 100644 (file)
@@ -273,48 +273,6 @@ u8 EFUSE_Read1Byte23a(struct rtw_adapter *Adapter, u16 Address)
                return 0xFF;
 }
 
-/* Copy from WMAC fot EFUSE write 1 byte. */
-void EFUSE_Write1Byte(struct rtw_adapter *Adapter, u16 Address, u8 Value)
-{
-       u8      Bytetemp = {0x00};
-       u8      temp = {0x00};
-       u32     k = 0;
-       u16     contentLen = 0;
-
-       EFUSE_GetEfuseDefinition23a(Adapter, EFUSE_WIFI,
-                                TYPE_EFUSE_REAL_CONTENT_LEN,
-                                (void *)&contentLen);
-
-       if (Address < contentLen) { /* E-fuse 512Byte */
-               rtl8723au_write8(Adapter, EFUSE_CTRL, Value);
-
-               /* Write E-fuse Register address bit0~7 */
-               temp = Address & 0xFF;
-               rtl8723au_write8(Adapter, EFUSE_CTRL+1, temp);
-               Bytetemp = rtl8723au_read8(Adapter, EFUSE_CTRL+2);
-
-               /* Write E-fuse Register address bit8~9 */
-               temp = ((Address >> 8) & 0x03) | (Bytetemp & 0xFC);
-               rtl8723au_write8(Adapter, EFUSE_CTRL+2, temp);
-
-               /* Write 0x30[31]= 1 */
-               Bytetemp = rtl8723au_read8(Adapter, EFUSE_CTRL+3);
-               temp = Bytetemp | 0x80;
-               rtl8723au_write8(Adapter, EFUSE_CTRL+3, temp);
-
-               /* Wait Write-ready (0x30[31]= 0) */
-               Bytetemp = rtl8723au_read8(Adapter, EFUSE_CTRL+3);
-               while (Bytetemp & 0x80) {
-                       Bytetemp = rtl8723au_read8(Adapter, EFUSE_CTRL+3);
-                       k++;
-                       if (k == 100) {
-                               k = 0;
-                               break;
-                       }
-               }
-       }
-}
-
 /* Read one byte from real Efuse. */
 int efuse_OneByteRead23a(struct rtw_adapter *pAdapter, u16 addr, u8 *data)
 {
This page took 0.026866 seconds and 5 git commands to generate.