Stefan Reinauer ([email protected]) just uploaded a new patch set to 
gerrit, which you can find at http://review.coreboot.org/1041

-gerrit

commit 194a9c36f9a812241baa02a854ba8195f37f7912
Author: Stefan Reinauer <[email protected]>
Date:   Mon May 14 13:52:32 2012 -0700

    Fix printk types in SPI flash drivers
    
    - use %zu instead of %zd for size_t (%zd is for ssize_t)
    - use %x instead of %lx for u32
    - break some long lines to avoid commit hook trouble
    
    Change-Id: Idfad716523dbcd2a595d26317240e972b5253e8b
    Signed-off-by: Stefan Reinauer <[email protected]>
---
 src/drivers/spi/eon.c      |    2 +-
 src/drivers/spi/macronix.c |    6 ++++--
 src/drivers/spi/spansion.c |    3 ++-
 src/drivers/spi/sst.c      |    2 +-
 src/drivers/spi/stmicro.c  |    3 ++-
 src/drivers/spi/winbond.c  |    6 +++---
 6 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/src/drivers/spi/eon.c b/src/drivers/spi/eon.c
index 4056953..b7c0630 100644
--- a/src/drivers/spi/eon.c
+++ b/src/drivers/spi/eon.c
@@ -86,7 +86,7 @@ static int eon_write(struct spi_flash *flash,
                cmd[3] = byte_addr;
 
                printk(BIOS_SPEW,
-                   "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } chunk_len = 
%zd\n",
+                   "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } chunk_len = 
%zu\n",
                     buf + actual, cmd[0], cmd[1], cmd[2], cmd[3], chunk_len);
 
                ret = spi_flash_cmd(flash->spi, CMD_EN25Q128_WREN, NULL, 0);
diff --git a/src/drivers/spi/macronix.c b/src/drivers/spi/macronix.c
index 130e746..84e79ef 100644
--- a/src/drivers/spi/macronix.c
+++ b/src/drivers/spi/macronix.c
@@ -141,7 +141,8 @@ static int macronix_write(struct spi_flash *flash,
                cmd[2] = (offset >> 8) & 0xff;
                cmd[3] = offset & 0xff;
 
-               printk(BIOS_SPEW, "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } 
chunk_len = %zd\n",
+               printk(BIOS_SPEW, "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x }"
+                    " chunk_len = %zu\n",
                     buf + actual, cmd[0], cmd[1], cmd[2], cmd[3], chunk_len);
 
                ret = spi_flash_cmd(flash->spi, CMD_MX25XX_WREN, NULL, 0);
@@ -165,7 +166,8 @@ static int macronix_write(struct spi_flash *flash,
                byte_addr = 0;
        }
 
-       printk(BIOS_INFO, "SF: Macronix: Successfully programmed %zu bytes @ 
0x%lx\n",
+       printk(BIOS_INFO, "SF: Macronix: Successfully programmed %zu bytes @"
+             " 0x%x\n",
              len, offset - len);
 
        spi_release_bus(flash->spi);
diff --git a/src/drivers/spi/spansion.c b/src/drivers/spi/spansion.c
index a4f370a..5479cae 100644
--- a/src/drivers/spi/spansion.c
+++ b/src/drivers/spi/spansion.c
@@ -162,7 +162,8 @@ static int spansion_write(struct spi_flash *flash,
                cmd[2] = page_addr;
                cmd[3] = byte_addr;
 
-               printk(BIOS_SPEW, "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } 
chunk_len = %zd\n",
+               printk(BIOS_SPEW, "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x }"
+                    " chunk_len = %zu\n",
                     buf + actual, cmd[0], cmd[1], cmd[2], cmd[3], chunk_len);
 
                ret = spi_flash_cmd(flash->spi, CMD_S25FLXX_WREN, NULL, 0);
diff --git a/src/drivers/spi/sst.c b/src/drivers/spi/sst.c
index c5bec12..3ca5563 100644
--- a/src/drivers/spi/sst.c
+++ b/src/drivers/spi/sst.c
@@ -194,7 +194,7 @@ sst_write(struct spi_flash *flash, u32 offset, size_t len, 
const void *buf)
                ret = sst_byte_write(flash, offset, buf + actual);
 
 done:
-       printk(BIOS_INFO, "SF: SST: program %s %zu bytes @ 0x%lx\n",
+       printk(BIOS_INFO, "SF: SST: program %s %zu bytes @ 0x%x\n",
              ret ? "failure" : "success", len, offset - actual);
 
        spi_release_bus(flash->spi);
diff --git a/src/drivers/spi/stmicro.c b/src/drivers/spi/stmicro.c
index 8cbdad5..9322c06 100644
--- a/src/drivers/spi/stmicro.c
+++ b/src/drivers/spi/stmicro.c
@@ -163,7 +163,8 @@ static int stmicro_write(struct spi_flash *flash,
                cmd[2] = page_addr;
                cmd[3] = byte_addr;
 
-               printk(BIOS_SPEW, "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } 
chunk_len = %zd\n",
+               printk(BIOS_SPEW, "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x }"
+                    " chunk_len = %zu\n",
                     buf + actual, cmd[0], cmd[1], cmd[2], cmd[3], chunk_len);
 
                ret = spi_flash_cmd(flash->spi, CMD_M25PXX_WREN, NULL, 0);
diff --git a/src/drivers/spi/winbond.c b/src/drivers/spi/winbond.c
index 65818d5..7b6d105 100644
--- a/src/drivers/spi/winbond.c
+++ b/src/drivers/spi/winbond.c
@@ -130,8 +130,8 @@ static int winbond_write(struct spi_flash *flash,
                cmd[1] = (offset >> 16) & 0xff;
                cmd[2] = (offset >> 8) & 0xff;
                cmd[3] = offset & 0xff;
-               printk(BIOS_SPEW, "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } 
chunk_len = %ld\n",
-                       buf + actual,
+               printk(BIOS_SPEW, "PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x }"
+                       " chunk_len = %zu\n", buf + actual,
                        cmd[0], cmd[1], cmd[2], cmd[3], chunk_len);
 
                ret = spi_flash_cmd(flash->spi, CMD_W25_WREN, NULL, 0);
@@ -155,7 +155,7 @@ static int winbond_write(struct spi_flash *flash,
                byte_addr = 0;
        }
 
-       printk(BIOS_INFO, "SF: Winbond: Successfully programmed %zu bytes @ 
0x%lx\n",
+       printk(BIOS_INFO, "SF: Winbond: Successfully programmed %zu bytes @ 
0x%x\n",
                        len, offset - len);
        ret = 0;
 

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to