From: Marek Marczykowski-Górecki Date: Tue, 7 Jun 2022 14:30:10 +0000 (+0200) Subject: ehci-dbgp: fix selecting n-th ehci controller X-Git-Tag: archive/raspbian/4.17.0-1+rpi1^2~33^2~550 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d6d0cb659fda64430d4649f8680c5cead32da8fd;p=xen.git ehci-dbgp: fix selecting n-th ehci controller The ehci number was parsed but ignored. Fixes: 322ecbe4ac85 ("console: add EHCI debug port based serial console") Signed-off-by: Marek Marczykowski-Górecki Reviewed-by: Jan Beulich --- diff --git a/xen/drivers/char/ehci-dbgp.c b/xen/drivers/char/ehci-dbgp.c index 16c8ff394d..92c588ec0a 100644 --- a/xen/drivers/char/ehci-dbgp.c +++ b/xen/drivers/char/ehci-dbgp.c @@ -1480,7 +1480,7 @@ void __init ehci_dbgp_init(void) unsigned int num = 0; if ( opt_dbgp[4] ) - simple_strtoul(opt_dbgp + 4, &e, 10); + num = simple_strtoul(opt_dbgp + 4, &e, 10); dbgp->cap = find_dbgp(dbgp, num); if ( !dbgp->cap )