From 77aac3693b45df7154ada64341fd67e41f990f22 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 6 Jun 2016 14:14:37 +0200 Subject: [PATCH] nand: Speculative change for later board revisions --- davinci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/davinci.c b/davinci.c index f19f5f1..e7ed279 100644 --- a/davinci.c +++ b/davinci.c @@ -611,7 +611,7 @@ davinci_platform_init(char *version, int *nwp_nand) char boardCfg; boardCfg = (*gpio01 >> 10) & 0x001F; boardVer = (*gpio01 >> 15) & 0x0007; - if (boardVer == 5) + if (boardVer >= 5) { uart_send_str_lf("Board needs GPIO for nWP"); *nwp_nand = 1;