diff options
| author | Scott Wood <[email protected]> | 2016-09-01 17:31:31 -0500 |
|---|---|---|
| committer | Scott Wood <[email protected]> | 2016-09-01 20:08:48 -0500 |
| commit | 8b7d51249eca113c4965a7c417f33d7eb569434b (patch) | |
| tree | 749d7b0e00f101c2873ef1c0ba00a2384537c59a /cmd | |
| parent | 4004a81828c72311f9c310c38d903b3f6638465d (diff) | |
nand: Fix some more NULL name tests
Now that nand_info[] is an array of pointers we need to test the
pointer itself rather than using name as a proxy for NULLness.
Fixes: b616d9b0a708eb9 ("nand: Embed mtd_info in struct nand_chip")
Signed-off-by: Scott Wood <[email protected]>
Cc: Lukasz Majewski <[email protected]>
Cc: Tony Lindgren <[email protected]>
Acked-by: Tony Lindgren <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/nand.c b/cmd/nand.c index c25e25af3d0..c16ec77ed45 100644 --- a/cmd/nand.c +++ b/cmd/nand.c @@ -191,7 +191,7 @@ int do_nand_env_oob(cmd_tbl_t *cmdtp, int argc, char *const argv[]) struct mtd_info *mtd = nand_info[0]; char *cmd = argv[1]; - if (CONFIG_SYS_MAX_NAND_DEVICE == 0 || !mtd->name) { + if (CONFIG_SYS_MAX_NAND_DEVICE == 0 || !mtd) { puts("no devices available\n"); return 1; } |
