diff options
author | Edgar E. Iglesias <edgar.iglesias@gmail.com> | 2009-09-14 10:44:26 +0200 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@gmail.com> | 2009-09-14 10:44:26 +0200 |
commit | fad8c772ef4acda9d35a4c626aa869330e3b3659 (patch) | |
tree | 1cd53bb0772cc9ce9a30e6a19a5461842a150ceb /hw/pflash_cfi01.c | |
parent | a61241035bf31661626b438d6dafd529e4f7a0e1 (diff) |
pflash_cfi01: Correct debug build, no functional changes.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Diffstat (limited to 'hw/pflash_cfi01.c')
-rw-r--r-- | hw/pflash_cfi01.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/hw/pflash_cfi01.c b/hw/pflash_cfi01.c index cef9ffb174..6ba496e541 100644 --- a/hw/pflash_cfi01.c +++ b/hw/pflash_cfi01.c @@ -110,9 +110,10 @@ static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset, else if (pfl->width == 4) boff = boff >> 2; - DPRINTF("%s: reading offset " TARGET_FMT_lx " under cmd %02x width %d\n", +#if 0 + DPRINTF("%s: reading offset " TARGET_FMT_plx " under cmd %02x width %d\n", __func__, offset, pfl->cmd, width); - +#endif switch (pfl->cmd) { case 0x00: /* Flash area read */ @@ -120,7 +121,7 @@ static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset, switch (width) { case 1: ret = p[offset]; - DPRINTF("%s: data offset " TARGET_FMT_lx " %02x\n", + DPRINTF("%s: data offset " TARGET_FMT_plx " %02x\n", __func__, offset, ret); break; case 2: @@ -131,7 +132,7 @@ static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset, ret = p[offset]; ret |= p[offset + 1] << 8; #endif - DPRINTF("%s: data offset " TARGET_FMT_lx " %04x\n", + DPRINTF("%s: data offset " TARGET_FMT_plx " %04x\n", __func__, offset, ret); break; case 4: @@ -147,7 +148,7 @@ static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset, ret |= p[offset + 2] << 16; ret |= p[offset + 3] << 24; #endif - DPRINTF("%s: data offset " TARGET_FMT_lx " %08x\n", + DPRINTF("%s: data offset " TARGET_FMT_plx " %08x\n", __func__, offset, ret); break; default: @@ -199,8 +200,8 @@ static void inline pflash_data_write(pflash_t *pfl, target_phys_addr_t offset, { uint8_t *p = pfl->storage; - DPRINTF("%s: block write offset " TARGET_FMT_lx - " value %x counter " TARGET_FMT_lx "\n", + DPRINTF("%s: block write offset " TARGET_FMT_plx + " value %x counter " TARGET_FMT_plx "\n", __func__, offset, value, pfl->counter); switch (width) { case 1: @@ -244,7 +245,7 @@ static void pflash_write(pflash_t *pfl, target_phys_addr_t offset, cmd = value; - DPRINTF("%s: writing offset " TARGET_FMT_lx " value %08x width %d wcycle 0x%x\n", + DPRINTF("%s: writing offset " TARGET_FMT_plx " value %08x width %d wcycle 0x%x\n", __func__, offset, value, width, pfl->wcycle); /* Set the device in I/O access mode */ @@ -264,14 +265,14 @@ static void pflash_write(pflash_t *pfl, target_phys_addr_t offset, goto reset_flash; case 0x10: /* Single Byte Program */ case 0x40: /* Single Byte Program */ - DPRINTF(stderr, "%s: Single Byte Program\n", __func__); + DPRINTF("%s: Single Byte Program\n", __func__); break; case 0x20: /* Block erase */ p = pfl->storage; offset &= ~(pfl->sector_len - 1); - DPRINTF("%s: block erase at " TARGET_FMT_lx " bytes " - TARGET_FMT_lx "\n", + DPRINTF("%s: block erase at " TARGET_FMT_plx " bytes " + TARGET_FMT_plx "\n", __func__, offset, pfl->sector_len); memset(p + offset, 0xff, pfl->sector_len); |