keep same return style where possible
Change-Id: I2f9b85dbc307a483609f76a84de77e3c74d346c7
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Reviewed-on: http://openocd.zylin.com/4588
Tested-by: jenkins
Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de>
struct jtag_libusb_device_handle **out)
{
int cnt, idx, errCode;
- int retval = -ENODEV;
+ int retval = ERROR_FAIL;
struct jtag_libusb_device_handle *libusb_handle = NULL;
if (libusb_init(&jtag_libusb_context) < 0)
- return -ENODEV;
+ return ERROR_FAIL;
cnt = libusb_get_device_list(jtag_libusb_context, &devs);
/* Success. */
*out = libusb_handle;
- retval = 0;
+ retval = ERROR_OK;
break;
}
if (cnt >= 0)