mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 03:20:56 +07:00
Input: HIL - remove one goto
This goto is only used to skip the next instruction, which can easily be done without a goto. Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
800963fd59
commit
71a129fb61
@ -686,13 +686,12 @@ static int hilse_donode(hil_mlc *mlc)
|
||||
write_lock_irqsave(&mlc->lock, flags);
|
||||
pack = node->object.packet;
|
||||
out:
|
||||
if (mlc->istarted)
|
||||
goto out2;
|
||||
/* Prepare to receive input */
|
||||
if ((node + 1)->act & HILSE_IN)
|
||||
hilse_setup_input(mlc, node + 1);
|
||||
if (!mlc->istarted) {
|
||||
/* Prepare to receive input */
|
||||
if ((node + 1)->act & HILSE_IN)
|
||||
hilse_setup_input(mlc, node + 1);
|
||||
}
|
||||
|
||||
out2:
|
||||
write_unlock_irqrestore(&mlc->lock, flags);
|
||||
|
||||
if (down_trylock(&mlc->osem)) {
|
||||
|
Loading…
Reference in New Issue
Block a user