Commit 6ef3be9f authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: remove do-nothing else condition case.

This patch removes do-nothing else condition case.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ea03f57b
...@@ -256,8 +256,6 @@ static inline int add_tcp_pending_ack(u32 ack, u32 session_index, ...@@ -256,8 +256,6 @@ static inline int add_tcp_pending_ack(u32 ack, u32 session_index,
pending_acks_info[pending_base + pending_acks].session_index = session_index; pending_acks_info[pending_base + pending_acks].session_index = session_index;
txqe->tcp_PendingAck_index = pending_base + pending_acks; txqe->tcp_PendingAck_index = pending_base + pending_acks;
pending_acks++; pending_acks++;
} else {
} }
return 0; return 0;
} }
...@@ -1630,7 +1628,6 @@ u32 wilc_get_chipid(u8 update) ...@@ -1630,7 +1628,6 @@ u32 wilc_get_chipid(u8 update)
} else { } else {
tempchipid = 0x1002b2; tempchipid = 0x1002b2;
} }
} else {
} }
chipid = tempchipid; chipid = tempchipid;
......
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