staging: rtl8188eu: replace switch-case with if

This switch has only one case. Replace it with an if statement.

Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Link: https://lore.kernel.org/r/20210408195601.4762-4-martin@kaiser.cx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Martin Kaiser 2021-04-08 21:55:53 +02:00 committed by Greg Kroah-Hartman
parent 062f6d1452
commit f40e1901be

View File

@ -675,13 +675,9 @@ u32 usb_write_port(struct adapter *padapter, u32 addr, u32 cnt, struct xmit_buf
("%s(): usb_submit_urb, status =%x\n",
__func__, status));
switch (status) {
case -ENODEV:
if (status == -ENODEV)
padapter->bDriverStopped = true;
break;
default:
break;
}
goto exit;
}