From be42db29926b9089c68e6cc2834dddd0bffb5f11 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Tue, 24 Jan 2012 15:45:00 +0100 Subject: [PATCH] Document in_80chars() and remove reference_image_header[] --- src/am7xxx.c | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/src/am7xxx.c b/src/am7xxx.c index 397dc97..3aedd7b 100644 --- a/src/am7xxx.c +++ b/src/am7xxx.c @@ -26,20 +26,6 @@ #define AM7XXX_VENDOR_ID 0x1de1 #define AM7XXX_PRODUCT_ID 0xc101 -#if 1 -static uint8_t reference_image_header[] = { - 0x02, 0x00, 0x00, 0x00, - 0x00, - 0x10, - 0x3e, - 0x10, - 0x01, 0x00, 0x00, 0x00, - 0x20, 0x03, 0x00, 0x00, - 0xe0, 0x01, 0x00, 0x00, - 0x53, 0xE8, 0x00, 0x00 -}; -#endif - static void dump_image_header(struct am7xxx_image_header *i) { if (i == NULL) @@ -78,6 +64,8 @@ static void dump_header(struct am7xxx_header *h) 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 */ return ((i+1) % (80/3)); } -- 2.1.4