Commit 368949a7 authored by Chris Park's avatar Chris Park Committed by Greg Kroah-Hartman

staging: wilc1000: remove unused log message using the CORECONFIG_DBG tag

This patch remove unused log messages using the CORECONFIG_DBG tag
Signed-off-by: default avatarChris Park <chris.park@atmel.com>
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e078ed73
...@@ -315,7 +315,6 @@ s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info) ...@@ -315,7 +315,6 @@ s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info)
rx_len = wid_len - 1; rx_len = wid_len - 1;
network_info->u16CapInfo = get_cap_info(msa); network_info->u16CapInfo = get_cap_info(msa);
network_info->u32Tsf = get_beacon_timestamp_lo(msa); network_info->u32Tsf = get_beacon_timestamp_lo(msa);
PRINT_D(CORECONFIG_DBG, "TSF :%x\n", network_info->u32Tsf);
tsf_lo = get_beacon_timestamp_lo(msa); tsf_lo = get_beacon_timestamp_lo(msa);
tsf_hi = get_beacon_timestamp_hi(msa); tsf_hi = get_beacon_timestamp_hi(msa);
......
...@@ -6,7 +6,6 @@ enum debug_region { ...@@ -6,7 +6,6 @@ enum debug_region {
Hostapd_debug, Hostapd_debug,
Hostinf_debug, Hostinf_debug,
CFG80211_debug, CFG80211_debug,
Coreconfig_debug,
Interrupt_debug, Interrupt_debug,
TX_debug, TX_debug,
RX_debug, RX_debug,
...@@ -24,7 +23,6 @@ enum debug_region { ...@@ -24,7 +23,6 @@ enum debug_region {
#define GENERIC_DBG (1 << Generic_debug) #define GENERIC_DBG (1 << Generic_debug)
#define HOSTAPD_DBG (1 << Hostapd_debug) #define HOSTAPD_DBG (1 << Hostapd_debug)
#define HOSTINF_DBG (1 << Hostinf_debug) #define HOSTINF_DBG (1 << Hostinf_debug)
#define CORECONFIG_DBG (1 << Coreconfig_debug)
#define CFG80211_DBG (1 << CFG80211_debug) #define CFG80211_DBG (1 << CFG80211_debug)
#define INT_DBG (1 << Interrupt_debug) #define INT_DBG (1 << Interrupt_debug)
#define TX_DBG (1 << TX_debug) #define TX_DBG (1 << TX_debug)
......
...@@ -24,7 +24,7 @@ static struct dentry *wilc_dir; ...@@ -24,7 +24,7 @@ static struct dentry *wilc_dir;
* -------------------------------------------------------------------------------- * --------------------------------------------------------------------------------
*/ */
#define DBG_REGION_ALL (GENERIC_DBG | HOSTAPD_DBG | HOSTINF_DBG | CORECONFIG_DBG | CFG80211_DBG | INT_DBG | TX_DBG | RX_DBG | LOCK_DBG | INIT_DBG | BUS_DBG | MEM_DBG) #define DBG_REGION_ALL (GENERIC_DBG | HOSTAPD_DBG | HOSTINF_DBG | CFG80211_DBG | INT_DBG | TX_DBG | RX_DBG | LOCK_DBG | INIT_DBG | BUS_DBG | MEM_DBG)
#define DBG_LEVEL_ALL (DEBUG | INFO | WRN | ERR) #define DBG_LEVEL_ALL (DEBUG | INFO | WRN | ERR)
atomic_t WILC_REGION = ATOMIC_INIT(INIT_DBG | GENERIC_DBG | CFG80211_DBG | FIRM_DBG | HOSTAPD_DBG); atomic_t WILC_REGION = ATOMIC_INIT(INIT_DBG | GENERIC_DBG | CFG80211_DBG | FIRM_DBG | HOSTAPD_DBG);
EXPORT_SYMBOL_GPL(WILC_REGION); EXPORT_SYMBOL_GPL(WILC_REGION);
......
...@@ -192,7 +192,6 @@ static void clear_shadow_scan(void) ...@@ -192,7 +192,6 @@ static void clear_shadow_scan(void)
if (op_ifcs == 0) { if (op_ifcs == 0) {
del_timer_sync(&hAgingTimer); del_timer_sync(&hAgingTimer);
PRINT_INFO(CORECONFIG_DBG, "destroy aging timer\n");
for (i = 0; i < last_scanned_cnt; i++) { for (i = 0; i < last_scanned_cnt; i++) {
if (last_scanned_shadow[last_scanned_cnt].pu8IEs) { if (last_scanned_shadow[last_scanned_cnt].pu8IEs) {
...@@ -424,8 +423,6 @@ static void CfgScanResult(enum scan_event scan_event, ...@@ -424,8 +423,6 @@ static void CfgScanResult(enum scan_event scan_event,
PRINT_D(CFG80211_DBG, "Network %s found\n", network_info->au8ssid); PRINT_D(CFG80211_DBG, "Network %s found\n", network_info->au8ssid);
priv->u32RcvdChCount++; priv->u32RcvdChCount++;
if (!join_params)
PRINT_INFO(CORECONFIG_DBG, ">> Something really bad happened\n");
add_network_to_shadow(network_info, priv, join_params); add_network_to_shadow(network_info, priv, join_params);
if (!(memcmp("DIRECT-", network_info->au8ssid, 7))) { if (!(memcmp("DIRECT-", network_info->au8ssid, 7))) {
...@@ -762,24 +759,14 @@ static int connect(struct wiphy *wiphy, struct net_device *dev, ...@@ -762,24 +759,14 @@ static int connect(struct wiphy *wiphy, struct net_device *dev,
PRINT_INFO(CFG80211_DBG, "sme->crypto.n_ciphers_pairwise=%d\n", sme->crypto.n_ciphers_pairwise); PRINT_INFO(CFG80211_DBG, "sme->crypto.n_ciphers_pairwise=%d\n", sme->crypto.n_ciphers_pairwise);
if (INFO) {
for (i = 0; i < sme->crypto.n_ciphers_pairwise; i++)
PRINT_D(CORECONFIG_DBG, "sme->crypto.ciphers_pairwise[%d]=%x\n", i, sme->crypto.ciphers_pairwise[i]);
}
if (sme->crypto.cipher_group != NO_ENCRYPT) { if (sme->crypto.cipher_group != NO_ENCRYPT) {
pcwpa_version = "Default"; pcwpa_version = "Default";
PRINT_D(CORECONFIG_DBG, ">> sme->crypto.wpa_versions: %x\n", sme->crypto.wpa_versions);
if (sme->crypto.cipher_group == WLAN_CIPHER_SUITE_WEP40) { if (sme->crypto.cipher_group == WLAN_CIPHER_SUITE_WEP40) {
u8security = ENCRYPT_ENABLED | WEP; u8security = ENCRYPT_ENABLED | WEP;
pcgroup_encrypt_val = "WEP40"; pcgroup_encrypt_val = "WEP40";
pccipher_group = "WLAN_CIPHER_SUITE_WEP40"; pccipher_group = "WLAN_CIPHER_SUITE_WEP40";
PRINT_INFO(CFG80211_DBG, "WEP Default Key Idx = %d\n", sme->key_idx); PRINT_INFO(CFG80211_DBG, "WEP Default Key Idx = %d\n", sme->key_idx);
if (INFO) {
for (i = 0; i < sme->key_len; i++)
PRINT_D(CORECONFIG_DBG, "WEP Key Value[%d] = %d\n", i, sme->key[i]);
}
priv->WILC_WFI_wep_key_len[sme->key_idx] = sme->key_len; priv->WILC_WFI_wep_key_len[sme->key_idx] = sme->key_len;
memcpy(priv->WILC_WFI_wep_key[sme->key_idx], sme->key, sme->key_len); memcpy(priv->WILC_WFI_wep_key[sme->key_idx], sme->key, sme->key_len);
...@@ -1386,9 +1373,6 @@ static int get_station(struct wiphy *wiphy, struct net_device *dev, ...@@ -1386,9 +1373,6 @@ static int get_station(struct wiphy *wiphy, struct net_device *dev,
wilc_enable_tcp_ack_filter(true); wilc_enable_tcp_ack_filter(true);
else if (strStatistics.link_speed != DEFAULT_LINK_SPEED) else if (strStatistics.link_speed != DEFAULT_LINK_SPEED)
wilc_enable_tcp_ack_filter(false); wilc_enable_tcp_ack_filter(false);
PRINT_D(CORECONFIG_DBG, "*** stats[%d][%d][%d][%d][%d]\n", sinfo->signal, sinfo->rx_packets, sinfo->tx_packets,
sinfo->tx_failed, sinfo->txrate.legacy);
} }
return 0; return 0;
} }
...@@ -2718,10 +2702,8 @@ int wilc_deinit_host_int(struct net_device *net) ...@@ -2718,10 +2702,8 @@ int wilc_deinit_host_int(struct net_device *net)
s32Error = wilc_deinit(vif); s32Error = wilc_deinit(vif);
clear_shadow_scan(); clear_shadow_scan();
if (op_ifcs == 0) { if (op_ifcs == 0)
PRINT_D(CORECONFIG_DBG, "destroy during ip\n");
del_timer_sync(&wilc_during_ip_timer); del_timer_sync(&wilc_during_ip_timer);
}
if (s32Error) if (s32Error)
netdev_err(net, "Error while deintializing host interface\n"); netdev_err(net, "Error while deintializing host interface\n");
......
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