aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--target/linux/rtl838x/files-5.4/arch/mips/rtl838x/serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/rtl838x/files-5.4/arch/mips/rtl838x/serial.c b/target/linux/rtl838x/files-5.4/arch/mips/rtl838x/serial.c
index 8a85933baf..74a29c505e 100644
--- a/target/linux/rtl838x/files-5.4/arch/mips/rtl838x/serial.c
+++ b/target/linux/rtl838x/files-5.4/arch/mips/rtl838x/serial.c
@@ -54,7 +54,7 @@ int __init rtl838x_serial_init(void)
s = strstr(arcs_cmdline, "console=ttyS0,");
if (s) {
s += 14;
- baud = kstrtoul(s, 10, &baud);
+ err = kstrtoul(s, 10, &baud);
if (err)
baud = 0;
while (isdigit(*s))