Messages in this thread Patch in this message |  | | From | Chen Zhou <> | Subject | [PATCH next 2/2] net: ch9200: remove unnecessary return | Date | Tue, 7 Jan 2020 17:28:56 +0800 |
| |
The return is not needed, remove it.
Signed-off-by: Chen Zhou <chenzhou10@huawei.com> --- drivers/net/usb/ch9200.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/drivers/net/usb/ch9200.c b/drivers/net/usb/ch9200.c index 3c2dc74..d7f3b70 100644 --- a/drivers/net/usb/ch9200.c +++ b/drivers/net/usb/ch9200.c @@ -130,8 +130,6 @@ static int control_read(struct usbnet *dev, err = -EINVAL; kfree(buf); - return err; - err_out: return err; } -- 2.7.4
|  |