All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] nand: Fix set_dev checks for no device
@ 2016-08-23 21:26 Tony Lindgren
  2016-08-23 21:30 ` Scott Wood
  0 siblings, 1 reply; 7+ messages in thread
From: Tony Lindgren @ 2016-08-23 21:26 UTC (permalink / raw)
  To: u-boot

If we do nand device 0 command in u-boot on a device that has NAND support
enabled but no NAND chip, we can get data abort at least on omaps.

Fix the issue by adding a check for nand_info[dev].

Signed-off-by: Tony Lindgren <tony@atomide.com>
--- a/cmd/nand.c
+++ b/cmd/nand.c
@@ -116,7 +116,7 @@ free_dat:
 static int set_dev(int dev)
 {
 	if (dev < 0 || dev >= CONFIG_SYS_MAX_NAND_DEVICE ||
-	    !nand_info[dev]->name) {
+	    !nand_info[dev] || !nand_info[dev]->name) {
 		puts("No such device\n");
 		return -1;
 	}
-- 
2.9.3

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-08-24 16:47 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-23 21:26 [U-Boot] [PATCH] nand: Fix set_dev checks for no device Tony Lindgren
2016-08-23 21:30 ` Scott Wood
2016-08-23 22:04   ` Tony Lindgren
2016-08-23 22:07     ` Scott Wood
2016-08-23 22:21       ` Tony Lindgren
2016-08-24  0:04         ` Scott Wood
2016-08-24 16:47           ` Tony Lindgren

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.