Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b9d7dca authored by Chris Park's avatar Chris Park Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: coreconfigurator.c: removes unnecessary log messages



This patch removes unnecessary log messages.

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 6b8c30d8
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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]);