From a0769f87144b75572ac6c347f1be6560160a4f09 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lothar=20Wa=C3=9Fmann?= Date: Wed, 17 Oct 2018 17:46:20 +0200 Subject: [PATCH] fix TXUL module name --- board/karo/tx6/tx6ul.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/karo/tx6/tx6ul.c b/board/karo/tx6/tx6ul.c index 0722b1e5c6..12e8087956 100644 --- a/board/karo/tx6/tx6ul.c +++ b/board/karo/tx6/tx6ul.c @@ -479,7 +479,7 @@ int board_init(void) char f = '?'; if (is_cpu_type(MXC_CPU_MX6UL)) - f = ((cpurev & 0xf0) > 0x10) ? '5' : '0'; + f = ((cpurev & 0xff) > 0x10) ? '5' : '0'; else if (is_cpu_type(MXC_CPU_MX6ULL)) f = '8'; -- 2.39.2