]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
silence misc printf formatting compiler warnings
authorKim Phillips <kim.phillips@freescale.com>
Thu, 10 Jul 2008 19:00:15 +0000 (14:00 -0500)
committerWolfgang Denk <wd@denx.de>
Thu, 10 Jul 2008 20:12:09 +0000 (22:12 +0200)
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
common/cmd_flash.c
common/cmd_jffs2.c
cpu/mpc83xx/ecc.c
cpu/mpc83xx/speed.c
drivers/block/fsl_sata.c
drivers/block/libata.c
drivers/rtc/ds1374.c

index db5dec9049ae035373c65b9acc3996a0f36b3e2f..9bd8074bfb39114779931dcdeface26b59b134bb 100644 (file)
@@ -360,7 +360,7 @@ int do_flerase (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
                                addr_last = addr_first + part->size - 1;
 
                                printf ("Erase Flash Parition %s, "
-                                               "bank %d, 0x%08lx - 0x%08lx ",
+                                               "bank %ld, 0x%08lx - 0x%08lx ",
                                                argv[1], bank, addr_first,
                                                addr_last);
 
@@ -566,7 +566,7 @@ int do_protect (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
                                addr_last = addr_first + part->size - 1;
 
                                printf ("%sProtect Flash Parition %s, "
-                                               "bank %d, 0x%08lx - 0x%08lx\n",
+                                               "bank %ld, 0x%08lx - 0x%08lx\n",
                                                p ? "" : "Un", argv[1],
                                                bank, addr_first, addr_last);
 
index 1b67e73f1119d03864b23afeaa197ed2533546f2..b4698bee47888a3e352551e32a1b41164aa209ce 100644 (file)
@@ -241,13 +241,13 @@ static void memsize_format(char *buf, u32 size)
 #define SIZE_KB ((u32)1024)
 
        if ((size % SIZE_GB) == 0)
-               sprintf(buf, "%lug", size/SIZE_GB);
+               sprintf(buf, "%ug", size/SIZE_GB);
        else if ((size % SIZE_MB) == 0)
-               sprintf(buf, "%lum", size/SIZE_MB);
+               sprintf(buf, "%um", size/SIZE_MB);
        else if (size % SIZE_KB == 0)
-               sprintf(buf, "%luk", size/SIZE_KB);
+               sprintf(buf, "%uk", size/SIZE_KB);
        else
-               sprintf(buf, "%lu", size);
+               sprintf(buf, "%u", size);
 }
 
 /**
@@ -416,7 +416,7 @@ static int part_validate(struct mtdids *id, struct part_info *part)
                part->size = id->size - part->offset;
 
        if (part->offset > id->size) {
-               printf("%s: offset %08lx beyond flash size %08lx\n",
+               printf("%s: offset %08x beyond flash size %08x\n",
                                id->mtd_id, part->offset, id->size);
                return 1;
        }
@@ -1288,7 +1288,7 @@ static void list_partitions(void)
        if (current_dev) {
                part = jffs2_part_info(current_dev, current_partnum);
                if (part) {
-                       printf("\nactive partition: %s%d,%d - (%s) 0x%08lx @ 0x%08lx\n",
+                       printf("\nactive partition: %s%d,%d - (%s) 0x%08x @ 0x%08x\n",
                                        MTD_DEV_TYPE(current_dev->id->type),
                                        current_dev->id->num, current_partnum,
                                        part->name, part->size, part->offset);
index 6f13094243a1cacaadb6a531c9d0a141abee76a2..5137ab6fdb08dca7f923a0bc55a5a1d849e2a5e2 100644 (file)
@@ -45,7 +45,7 @@ void ecc_print_status(void)
               (ddr->err_disable & ECC_ERROR_DISABLE_MSED) ? 1 : 0);
 
        /* Error injection */
-       printf("Memory Data Path Error Injection Mask High/Low: %08lx %08lx\n",
+       printf("Memory Data Path Error Injection Mask High/Low: %08x %08x\n",
               ddr->data_err_inject_hi, ddr->data_err_inject_lo);
 
        printf("Memory Data Path Error Injection Mask ECC:\n");
@@ -75,8 +75,8 @@ void ecc_print_status(void)
               (ddr->err_detect & ECC_ERROR_DETECT_MSE) ? 1 : 0);
 
        /* Capture data */
-       printf("Memory Error Address Capture: 0x%08lx\n", ddr->capture_address);
-       printf("Memory Data Path Read Capture High/Low: %08lx %08lx\n",
+       printf("Memory Error Address Capture: 0x%08x\n", ddr->capture_address);
+       printf("Memory Data Path Read Capture High/Low: %08x %08x\n",
               ddr->capture_data_hi, ddr->capture_data_lo);
        printf("Memory Data Path Read Capture ECC: 0x%02x\n\n",
               ddr->capture_ecc & CAPTURE_ECC_ECE);
index 16145dd355f8f7084d5a3787000ab2f741fac442..76c569de1b53f182db0f52823e239f0945731c72 100644 (file)
@@ -508,7 +508,7 @@ int do_clocks (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
 #endif
        printf("  Local Bus Controller:%4d MHz\n", gd->lbiu_clk / 1000000);
        printf("  Local Bus:           %4d MHz\n", gd->lclk_clk / 1000000);
-       printf("  DDR:                 %4d MHz\n", gd->mem_clk / 1000000);
+       printf("  DDR:                 %4ld MHz\n", gd->mem_clk / 1000000);
 #if defined(CONFIG_MPC8360)
        printf("  DDR Secondary:       %4d MHz\n", gd->mem_sec_clk / 1000000);
 #endif
index d441a30ed511b184f5019905c419456623f24c1a..55f593a4915def5d66469a2adc013f76b06a6133 100644 (file)
@@ -510,7 +510,7 @@ static int fsl_sata_exec_cmd(struct fsl_sata *sata, struct cfis *cfis,
        int rc;
 
        if (tag > SATA_HC_MAX_CMD || tag < 0) {
-               printf("tag is out of range, tag=\n\r", tag);
+               printf("tag is out of range, tag=%d\n\r", tag);
                return -1;
        }
 
index 90e9a43ca8178312f4babcd6a323b96da86e9553..65b02039e499b03a0931c3528fbcf441b38b3799 100644 (file)
@@ -107,7 +107,7 @@ void ata_dump_id(u16 *id)
 
        /* Total sectors of device  */
        n_sectors = ata_id_n_sectors(id);
-       printf("Capablity: %d sectors\n\r", n_sectors);
+       printf("Capablity: %lld sectors\n\r", n_sectors);
 
        printf ("id[49]: capabilities = 0x%04x\n"
                "id[53]: field valid = 0x%04x\n"
index f6bb2965a4b1b5ffaaffbfb6fdcae5d5a4410acd..1533b60f18c157c2ba9f1a94336682a5893c751b 100644 (file)
@@ -141,7 +141,7 @@ int rtc_get (struct rtc_time *tm){
                rel = -1;
        }
 
-       DEBUGR ("Get RTC s since 1.1.1970: %d\n", time1);
+       DEBUGR ("Get RTC s since 1.1.1970: %ld\n", time1);
 
        to_tm(time1, tm); /* To Gregorian Date */
 
@@ -176,7 +176,7 @@ void rtc_set (struct rtc_time *tmp){
                        tmp->tm_mday, tmp->tm_hour,
                        tmp->tm_min, tmp->tm_sec);
 
-       DEBUGR ("Set RTC s since 1.1.1970: %d (0x%02x)\n", time, time);
+       DEBUGR ("Set RTC s since 1.1.1970: %ld (0x%02lx)\n", time, time);
 
        /* write to RTC_TOD_CNT_BYTEn_ADDR */
        for (i = 0; i <= 3; i++) {