summaryrefslogtreecommitdiff
path: root/arch/x86/kernel/early_printk.c
diff options
context:
space:
mode:
authorPeter Zijlstra <peterz@infradead.org>2022-03-04 18:19:55 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-03-15 20:20:34 +0300
commitb0ae33a2d2fb6c55117b377ec4ae3f2c84eab6a2 (patch)
tree8c4b7aa8ce9458614fdf1c333fa301f7b4ba79ed /arch/x86/kernel/early_printk.c
parent69f8aeab437c6bae1394673154917e0a218edb44 (diff)
downloadlinux-b0ae33a2d2fb6c55117b377ec4ae3f2c84eab6a2.tar.xz
usb: early: xhci-dbc: Remove duplicate keep parsing
The generic earlyprintk= parsing already parses the optional ",keep", no need to duplicate that in the xdbc driver. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lore.kernel.org/r/20220304152135.975568860@infradead.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/x86/kernel/early_printk.c')
-rw-r--r--arch/x86/kernel/early_printk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/early_printk.c b/arch/x86/kernel/early_printk.c
index d3c531d3b244..68b38925a74f 100644
--- a/arch/x86/kernel/early_printk.c
+++ b/arch/x86/kernel/early_printk.c
@@ -387,7 +387,7 @@ static int __init setup_early_printk(char *buf)
#endif
#ifdef CONFIG_EARLY_PRINTK_USB_XDBC
if (!strncmp(buf, "xdbc", 4))
- early_xdbc_parse_parameter(buf + 4);
+ early_xdbc_parse_parameter(buf + 4, keep);
#endif
buf++;