diff options
author | Chris Park <chris.park@atmel.com> | 2016-02-22 13:11:51 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-22 11:47:00 -0800 |
commit | 8fb90a5e8e73ce6f04b94ffe35587c2166f3f5ad (patch) | |
tree | bba162ceb7dc82051adfc3c32a5495814d9cec52 | |
parent | 396fa30e4b320f235c462f9d1b1f9da87548667a (diff) | |
download | linux-8fb90a5e8e73ce6f04b94ffe35587c2166f3f5ad.tar.bz2 |
staging: wilc1000: host_interface.c: removes unnecessary log message
This patch removes unnecessary log message and relate variables.
Signed-off-by: Chris Park <chris.park@atmel.com>
Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wilc1000/host_interface.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 3de4f9984e5d..035f6f59f919 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -2999,7 +2999,6 @@ int wilc_add_wep_key_bss_ap(struct wilc_vif *vif, const u8 *key, u8 len, int result = 0; struct host_if_msg msg; struct host_if_drv *hif_drv = vif->hif_drv; - int i; if (!hif_drv) { PRINT_ER("driver is null\n"); @@ -3008,10 +3007,6 @@ int wilc_add_wep_key_bss_ap(struct wilc_vif *vif, const u8 *key, u8 len, memset(&msg, 0, sizeof(struct host_if_msg)); - if (INFO) { - for (i = 0; i < len; i++) - PRINT_INFO(HOSTAPD_DBG, "KEY is %x\n", key[i]); - } msg.id = HOST_IF_MSG_KEY; msg.body.key_info.type = WEP; msg.body.key_info.action = ADDKEY_AP; |