# HG changeset patch
# User Martin Troxler <martin.troxler@komaxgroup.com>
# Date 1259580384 -3600
# Node ID cd9a68fd5b89a8f854ae57c479b6272eb1899843
# Parent  017fa8fd9ac1d75861a3471c5d414ea3dfe48b41
ec_print_data: show only the first 128 and the last 128 bytes of a data block

diff -r 017fa8fd9ac1 -r cd9a68fd5b89 master/module.c
--- a/master/module.c	Thu Nov 26 15:33:48 2009 +0100
+++ b/master/module.c	Mon Nov 30 12:26:24 2009 +0100
@@ -318,6 +318,8 @@
 /*****************************************************************************/
 
 /** Outputs frame contents for debugging purposes.
+ * If the data block is larger than 256 bytes, only the first 128
+ * and the last 128 bytes will be shown
  */
 void ec_print_data(const uint8_t *data, /**< pointer to data */
                    size_t size /**< number of bytes to output */
@@ -332,10 +334,11 @@
             printk("\n");
             EC_DBG("");
         }
-        if (i == 128 && size > 256)
+        if (i+1 == 128 && size > 256)
         {
-            EC_DBG("dropped %d bytes\n",size-128-i);
+            printk("dropped %d bytes\n",size-128-i);
             i = size - 128;
+            EC_DBG("");
         }
     }
     printk("\n");