]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - cpu/nios2/sysid.c
rename CFG_ macros to CONFIG_SYS
[karo-tx-uboot.git] / cpu / nios2 / sysid.c
index b5a29593ea60f9d66226cbd6d3642b99d9b693e2..afd5d83d95de91f113d1f6437c990328470f81ee 100644 (file)
@@ -23,7 +23,7 @@
 
 #include <common.h>
 
-#if defined (CFG_NIOS_SYSID_BASE)
+#if defined (CONFIG_SYS_NIOS_SYSID_BASE)
 
 #include <command.h>
 #include <asm/io.h>
@@ -32,7 +32,7 @@
 
 void display_sysid (void)
 {
-       struct nios_sysid_t *sysid = (struct nios_sysid_t *)CFG_NIOS_SYSID_BASE;
+       struct nios_sysid_t *sysid = (struct nios_sysid_t *)CONFIG_SYS_NIOS_SYSID_BASE;
        struct tm t;
        char asc[32];
        time_t stamp;
@@ -40,7 +40,7 @@ void display_sysid (void)
        stamp = readl (&sysid->timestamp);
        localtime_r (&stamp, &t);
        asctime_r (&t, asc);
-       printf ("SYSID : %08x, %s", readl (&sysid->id), asc);
+       printf ("SYSID : %08lx, %s", readl (&sysid->id), asc);
 
 }
 
@@ -55,4 +55,4 @@ U_BOOT_CMD(
        "sysid   - display Nios-II system id\n\n",
        "\n    - display Nios-II system id\n"
 );
-#endif /* CFG_NIOS_SYSID_BASE */
+#endif /* CONFIG_SYS_NIOS_SYSID_BASE */