diff options
| author | 2016-02-22 13:12:00 +0900 | |
|---|---|---|
| committer | 2016-02-22 11:47:00 -0800 | |
| commit | 3b9d7dca8b792cd8afc8605951fa3bfbc15a7dee (patch) | |
| tree | 42654c9cdc9e09c882b365314dca2df73e67aad9 | |
| parent | staging: wilc1000: removes unused CFG80211_DBG tag (diff) | |
staging: wilc1000: coreconfigurator.c: removes unnecessary log messages
This patch removes unnecessary log messages.
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/coreconfigurator.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/wilc1000/coreconfigurator.c b/drivers/staging/wilc1000/coreconfigurator.c index 3a7658617014..25dc10878450 100644 --- a/drivers/staging/wilc1000/coreconfigurator.c +++ b/drivers/staging/wilc1000/coreconfigurator.c @@ -284,10 +284,8 @@ s32 wilc_parse_network_info(u8 *msg_buffer, msg_type = msg_buffer[0]; - if ('N' != msg_type) { - PRINT_ER("Received Message format incorrect.\n"); + if ('N' != msg_type) return -EFAULT; - } msg_id = msg_buffer[1]; msg_len = MAKE_WORD16(msg_buffer[2], msg_buffer[3]); |
