]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - common/cmd_misc.c
rename CFG_ macros to CONFIG_SYS
[people/ms/u-boot.git] / common / cmd_misc.c
index 126b538ce8d551ecf5e0e1df85e9d0e5924bc932..3ea8ee07f760e01a2c622bff5b6c8d79a0ab4bf1 100644 (file)
@@ -37,7 +37,7 @@ int do_sleep (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
                return 1;
        }
 
-       delay = simple_strtoul(argv[1], NULL, 10) * CFG_HZ;
+       delay = simple_strtoul(argv[1], NULL, 10) * CONFIG_SYS_HZ;
 
        while (get_timer(start) < delay) {
                if (ctrlc ()) {