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>
This commit is contained in:
Chris Park 2016-02-22 13:11:51 +09:00 committed by Greg Kroah-Hartman
parent 396fa30e4b
commit 8fb90a5e8e

View File

@ -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;