From 3208a89c3604d30a3f62944228fdac5ab2a261ee Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Thu, 6 Apr 2017 12:32:50 +0200 Subject: [PATCH] Drop support for CONFIG_AUTOBOOT_STOP_CHAR --- u-boot/common/main.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/u-boot/common/main.c b/u-boot/common/main.c index 9ca775d..a8d708c 100644 --- a/u-boot/common/main.c +++ b/u-boot/common/main.c @@ -76,11 +76,7 @@ static __inline__ int abortboot(int bootdelay) /* we got a key press */ if (tstc()) { stopc = getc(); -#if defined(CONFIG_AUTOBOOT_STOP_CHAR) - if (stopc == CONFIG_AUTOBOOT_STOP_CHAR) { -#else if (stopc != 0) { -#endif abort = 1; bootdelay = 0; break; -- 2.25.1