git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7870043
)
misc: nuvoton: fix type error
author
Jim Liu
<jim.t90615@gmail.com>
Tue, 13 Jun 2023 07:45:56 +0000
(15:45 +0800)
committer
Tom Rini
<trini@konsulko.com>
Fri, 14 Jul 2023 19:21:07 +0000
(15:21 -0400)
Signed-off-by: Jim Liu <JJLIU0@nuvoton.com>
drivers/misc/npcm_otp.c
patch
|
blob
|
history
diff --git
a/drivers/misc/npcm_otp.c
b/drivers/misc/npcm_otp.c
index
3049108
..
0802972
100644
(file)
--- a/
drivers/misc/npcm_otp.c
+++ b/
drivers/misc/npcm_otp.c
@@
-33,7
+33,7
@@
static int npcm_otp_check_inputs(u32 arr, u32 word)
if (arr >= NPCM_NUM_OF_SA) {
if (IS_ENABLED(CONFIG_ARCH_NPCM8XX))
printf("\nError: npcm8XX otp includs only one bank: 0\n");
- if (IS_ENABLED(CONFIG_ARCH_NPCM7
XX
))
+ if (IS_ENABLED(CONFIG_ARCH_NPCM7
xx
))
printf("\nError: npcm7XX otp includs only two banks: 0 and 1\n");
return -1;
}