staging: ks7010: remove redundant check

Function checks for condition inside a loop that checks the same
condition, this is redundant. Fix also removes checkpatch CHECK.

Remove redundant check.

Signed-off-by: Tobin C. Harding <me@tobin.cc>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Tobin C. Harding 2017-03-22 13:06:26 +11:00 коммит произвёл Greg Kroah-Hartman
Родитель 61082bf696
Коммит 6ad6e21bd4
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -2608,8 +2608,7 @@ void hostif_sme_task(unsigned long dev)
DPRINTK(3, "\n");
if (priv->dev_state >= DEVICE_STATE_BOOT) {
if (cnt_smeqbody(priv) > 0
&& priv->dev_state >= DEVICE_STATE_BOOT) {
if (cnt_smeqbody(priv) > 0) {
hostif_sme_execute(priv,
priv->sme_i.event_buff[priv->sme_i.
qhead]);