]> git.sur5r.net Git - u-boot/blobdiff - cmd/fdt.c
cmd: fdt: Narrow the check for fdt addr
[u-boot] / cmd / fdt.c
index 898217ffe5f8b2a0f5cf0d32ef635b0bc935a01a..0f5923e75a41f45139314ce9408af06c749ea42e 100644 (file)
--- a/cmd/fdt.c
+++ b/cmd/fdt.c
@@ -87,7 +87,7 @@ static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        /*
         * Set the address of the fdt
         */
-       if (argv[1][0] == 'a') {
+       if (strncmp(argv[1], "ad", 2) == 0) {
                unsigned long addr;
                int control = 0;
                struct fdt_header *blob;