ezusb.c: Coding style fixes.
This commit is contained in:
parent
904299164f
commit
9d2933fbe9
|
@ -43,7 +43,6 @@ int ezusb_reset(struct libusb_device_handle *hdl, int set_clear)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int ezusb_install_firmware(libusb_device_handle *hdl, const char *filename)
|
int ezusb_install_firmware(libusb_device_handle *hdl, const char *filename)
|
||||||
{
|
{
|
||||||
FILE *fw;
|
FILE *fw;
|
||||||
|
@ -51,23 +50,22 @@ int ezusb_install_firmware(libusb_device_handle *hdl, const char *filename)
|
||||||
unsigned char buf[4096];
|
unsigned char buf[4096];
|
||||||
|
|
||||||
g_message("Uploading firmware at %s", filename);
|
g_message("Uploading firmware at %s", filename);
|
||||||
if((fw = fopen(filename, "r")) == NULL)
|
if ((fw = fopen(filename, "r")) == NULL) {
|
||||||
{
|
g_warning("Unable to open firmware file %s for reading: %s",
|
||||||
g_warning("Unable to open firmware file %s for reading: %s", filename, strerror(errno));
|
filename, strerror(errno));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
result = 0;
|
result = 0;
|
||||||
offset = 0;
|
offset = 0;
|
||||||
while(1)
|
while (1) {
|
||||||
{
|
|
||||||
chunksize = fread(buf, 1, 4096, fw);
|
chunksize = fread(buf, 1, 4096, fw);
|
||||||
if (chunksize == 0)
|
if (chunksize == 0)
|
||||||
break;
|
break;
|
||||||
err = libusb_control_transfer(hdl, LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_ENDPOINT_OUT, 0xa0,
|
err = libusb_control_transfer(hdl, LIBUSB_REQUEST_TYPE_VENDOR |
|
||||||
offset, 0x0000, buf, chunksize, 100);
|
LIBUSB_ENDPOINT_OUT, 0xa0, offset, 0x0000,
|
||||||
if(err < 0)
|
buf, chunksize, 100);
|
||||||
{
|
if (err < 0) {
|
||||||
g_warning("Unable to send firmware to device: %d", err);
|
g_warning("Unable to send firmware to device: %d", err);
|
||||||
result = 1;
|
result = 1;
|
||||||
break;
|
break;
|
||||||
|
@ -80,5 +78,3 @@ int ezusb_install_firmware(libusb_device_handle *hdl, const char *filename)
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue