Browse Source

USB: missing error check in emi26

this drivers lacks an error check.

Signed-off-by: Oliver Neukum <oneukum@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Oliver Neukum 17 năm trước cách đây
mục cha
commit
cf4cf0bb89
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      drivers/usb/misc/emi26.c

+ 4 - 0
drivers/usb/misc/emi26.c

@@ -114,6 +114,10 @@ static int emi26_load_firmware (struct usb_device *dev)
 
 
 	/* De-assert reset (let the CPU run) */
 	/* De-assert reset (let the CPU run) */
 	err = emi26_set_reset(dev,0);
 	err = emi26_set_reset(dev,0);
+	if (err < 0) {
+		err("%s - error loading firmware: error = %d", __FUNCTION__, err);
+		goto wraperr;
+	}
 	msleep(250);	/* let device settle */
 	msleep(250);	/* let device settle */
 
 
 	/* 2. We upload the FPGA firmware into the EMI
 	/* 2. We upload the FPGA firmware into the EMI