]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
Staging: rtl8192e: Remove unused function
authorMike McCormack <mikem@ring3k.org>
Tue, 10 Aug 2010 14:44:56 +0000 (23:44 +0900)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 31 Aug 2010 21:55:08 +0000 (14:55 -0700)
Signed-off-by: Mike McCormack <mikem@ring3k.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/rtl8192e/r8192E.h
drivers/staging/rtl8192e/r8192E_core.c

index 865cdc008975cc08df22a8ab545034715b9de20f..bfab2099c1eeb2d08a0e25f9d1102496c144b575 100644 (file)
@@ -1505,7 +1505,6 @@ void rtl8187_set_rxconf(struct net_device *dev);
 void CamResetAllEntry(struct net_device* dev);
 void EnableHWSecurityConfig8192(struct net_device *dev);
 void setKey(struct net_device *dev, u8 EntryNo, u8 KeyIndex, u16 KeyType, const u8 *MacAddr, u8 DefaultKey, u32 *KeyContent );
-void CamPrintDbgReg(struct net_device* dev);
 extern void    dm_cck_txpower_adjust(struct net_device *dev,bool  binch14);
 extern void firmware_init_param(struct net_device *dev);
 extern RT_STATUS cmpk_message_handle_tx(struct net_device *dev, u8* codevirtualaddress, u32 packettype, u32 buffer_len);
index 1098f65f06945cc577f4a6b3dc6e517989d79e4b..b785527d581fb84f76f79023f4a4cf1f497e4126 100644 (file)
@@ -6896,26 +6896,6 @@ void setKey(     struct net_device *dev,
        }
        RT_TRACE(COMP_SEC,"=========>after set key, usconfig:%x\n", usConfig);
 }
-// This function seems not ready! WB
-void CamPrintDbgReg(struct net_device* dev)
-{
-       unsigned long rvalue;
-       unsigned char ucValue;
-       write_nic_dword(dev, DCAM, 0x80000000);
-       msleep(40);
-       rvalue = read_nic_dword(dev, DCAM);     //delay_ms(40);
-       RT_TRACE(COMP_SEC, " TX CAM=%8lX ",rvalue);
-       if((rvalue & 0x40000000) != 0x4000000)
-               RT_TRACE(COMP_SEC, "-->TX Key Not Found      ");
-       msleep(20);
-       write_nic_dword(dev, DCAM, 0x00000000); //delay_ms(40);
-       rvalue = read_nic_dword(dev, DCAM);     //delay_ms(40);
-       RT_TRACE(COMP_SEC, "RX CAM=%8lX ",rvalue);
-       if((rvalue & 0x40000000) != 0x4000000)
-               RT_TRACE(COMP_SEC, "-->CAM Key Not Found   ");
-       ucValue = read_nic_byte(dev, SECR);
-       RT_TRACE(COMP_SEC, "WPA_Config=%x \n",ucValue);
-}
 
 bool NicIFEnableNIC(struct net_device* dev)
 {