Commit 26ef8190 authored by Mike McCormack's avatar Mike McCormack Committed by Greg Kroah-Hartman

Staging: rtl8192e: Remove unused function

Signed-off-by: default avatarMike McCormack <mikem@ring3k.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f500e256
...@@ -1505,7 +1505,6 @@ void rtl8187_set_rxconf(struct net_device *dev); ...@@ -1505,7 +1505,6 @@ void rtl8187_set_rxconf(struct net_device *dev);
void CamResetAllEntry(struct net_device* dev); void CamResetAllEntry(struct net_device* dev);
void EnableHWSecurityConfig8192(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 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 dm_cck_txpower_adjust(struct net_device *dev,bool binch14);
extern void firmware_init_param(struct net_device *dev); 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); extern RT_STATUS cmpk_message_handle_tx(struct net_device *dev, u8* codevirtualaddress, u32 packettype, u32 buffer_len);
......
...@@ -6896,26 +6896,6 @@ void setKey( struct net_device *dev, ...@@ -6896,26 +6896,6 @@ void setKey( struct net_device *dev,
} }
RT_TRACE(COMP_SEC,"=========>after set key, usconfig:%x\n", usConfig); 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) bool NicIFEnableNIC(struct net_device* dev)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment