projects
/
libam7xxx.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
am7xxx-play: fix an error message, we now use am7xxx_send_image_async()
[libam7xxx.git]
/
src
/
am7xxx.c
diff --git
a/src/am7xxx.c
b/src/am7xxx.c
index
c18e202
..
76df87d
100644
(file)
--- a/
src/am7xxx.c
+++ b/
src/am7xxx.c
@@
-341,7
+341,7
@@
static inline unsigned int in_80chars(unsigned int i)
{
/* The 3 below is the length of "xx " where xx is the hex string
* representation of a byte */
{
/* The 3 below is the length of "xx " where xx is the hex string
* representation of a byte */
- return ((i
+1) % (80/
3));
+ return ((i
+ 1) % (80 /
3));
}
static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
}
static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
@@
-664,7
+664,7
@@
static am7xxx_device *add_new_device(am7xxx_context *ctx,
new_device = malloc(sizeof(*new_device));
if (new_device == NULL) {
new_device = malloc(sizeof(*new_device));
if (new_device == NULL) {
-
fatal(
"cannot allocate a new device (%s)\n", strerror(errno));
+
debug(ctx,
"cannot allocate a new device (%s)\n", strerror(errno));
return NULL;
}
memset(new_device, 0, sizeof(*new_device));
return NULL;
}
memset(new_device, 0, sizeof(*new_device));
@@
-720,7
+720,6
@@
static int open_device(am7xxx_context *ctx,
/* the usb device has already been opened */
if ((*dev)->usb_device) {
/* the usb device has already been opened */
if ((*dev)->usb_device) {
- debug(ctx, "(*dev)->usb_device already set\n");
ret = 1;
goto out;
}
ret = 1;
goto out;
}
@@
-801,7
+800,7
@@
static int open_device(am7xxx_context *ctx,
}
if (current_configuration != (*dev)->desc->configuration) {
}
if (current_configuration != (*dev)->desc->configuration) {
- debug(ctx, "libusb configuration changed (expected: %hhu, current: %
hhu
\n",
+ debug(ctx, "libusb configuration changed (expected: %hhu, current: %
d
\n",
(*dev)->desc->configuration, current_configuration);
ret = -EINVAL;
goto out_libusb_release_interface;
(*dev)->desc->configuration, current_configuration);
ret = -EINVAL;
goto out_libusb_release_interface;