Преглед изворни кода

usb: Correct return value in usb_stor_info()

This should return 0 on success, not 1. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Marek Vasut <marex@denx.de>
Reviewed-by: Tom Rini <trini@konsulko.com>
Simon Glass пре 8 година
родитељ
комит
b94fc8518e
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      common/usb_storage.c

+ 1 - 1
common/usb_storage.c

@@ -193,7 +193,7 @@ int usb_stor_info(void)
 		return 1;
 	}
 
-	return 1;
+	return 0;
 }
 
 static unsigned int usb_get_max_lun(struct us_data *us)