mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 09:36:40 +07:00
drivers/tty: add error handling for pcmcia_loop_config
When pcmcia_loop_config fails, the lack of error-handling code may cause unexpected results. This patch adds error-handling code after calling pcmcia_loop_config. Signed-off-by: Zhouyang Jia <jiazhouyang09@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
be70874498
commit
85c634e919
@ -638,8 +638,10 @@ static int serial_config(struct pcmcia_device *link)
|
|||||||
(link->has_func_id) &&
|
(link->has_func_id) &&
|
||||||
(link->socket->pcmcia_pfc == 0) &&
|
(link->socket->pcmcia_pfc == 0) &&
|
||||||
((link->func_id == CISTPL_FUNCID_MULTI) ||
|
((link->func_id == CISTPL_FUNCID_MULTI) ||
|
||||||
(link->func_id == CISTPL_FUNCID_SERIAL)))
|
(link->func_id == CISTPL_FUNCID_SERIAL))) {
|
||||||
pcmcia_loop_config(link, serial_check_for_multi, info);
|
if (pcmcia_loop_config(link, serial_check_for_multi, info))
|
||||||
|
goto failed;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Apply any multi-port quirk.
|
* Apply any multi-port quirk.
|
||||||
|
Loading…
Reference in New Issue
Block a user