1
0
Fork 0

USB: gadget/multi: cdc_do_config: remove redundant check

cdc_do_config() had a double ret check after fsg_add().

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
wifi-calibration
Peter Korsgaard 2010-03-12 12:33:15 +01:00 committed by Greg Kroah-Hartman
parent d835933436
commit 4cb80cda51
1 changed files with 0 additions and 2 deletions

View File

@ -211,8 +211,6 @@ static int __init cdc_do_config(struct usb_configuration *c)
ret = fsg_add(c->cdev, c, fsg_common);
if (ret < 0)
return ret;
if (ret < 0)
return ret;
return 0;
}