Author: snelson
Date: 2010-01-10 00:58:37 +0100 (Sun, 10 Jan 2010)
New Revision: 852

Modified:
   trunk/bitbang_spi.c
Log:
Convert all messages in bitbang_spi.c to the new message infrastructure.

Signed-off-by: Sean Nelson <[email protected]>
Acked-by: Carl-Daniel Hailfinger <[email protected]>



Modified: trunk/bitbang_spi.c
===================================================================
--- trunk/bitbang_spi.c 2010-01-09 23:56:41 UTC (rev 851)
+++ trunk/bitbang_spi.c 2010-01-09 23:58:37 UTC (rev 852)
@@ -99,14 +99,14 @@
        if (bufsize > oldbufsize) {
                bufout = realloc(bufout, bufsize);
                if (!bufout) {
-                       fprintf(stderr, "Out of memory!\n");
+                       msg_perr("Out of memory!\n");
                        if (bufin)
                                free(bufin);
                        exit(1);
                }
                bufin = realloc(bufout, bufsize);
                if (!bufin) {
-                       fprintf(stderr, "Out of memory!\n");
+                       msg_perr("Out of memory!\n");
                        if (bufout)
                                free(bufout);
                        exit(1);
@@ -143,7 +143,7 @@
        int total_size = 1024 * flash->total_size;
        int i;
 
-       printf_debug("total_size is %d\n", total_size);
+       msg_pdbg("total_size is %d\n", total_size);
        for (i = 0; i < total_size; i += 256) {
                int l, r;
                if (i + 256 <= total_size)
@@ -152,7 +152,7 @@
                        l = total_size - i;
 
                if ((r = spi_nbyte_program(i, &buf[i], l))) {
-                       fprintf(stderr, "%s: write fail %d\n", __func__, r);
+                       msg_perr("%s: write fail %d\n", __func__, r);
                        return 1;
                }
                


_______________________________________________
flashrom mailing list
[email protected]
http://www.flashrom.org/mailman/listinfo/flashrom

Reply via email to