mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-26 15:54:18 +08:00
serial: samsung: remove unneded 'ignore_char' label
This label does nothing special and we don't need to have it anymore. Signed-off-by: Robert Baldyga <r.baldyga@samsung.com> Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e4678afeff
commit
620bb21448
@ -676,7 +676,7 @@ static irqreturn_t s3c24xx_serial_rx_chars_pio(void *dev_id)
|
||||
dbg("break!\n");
|
||||
port->icount.brk++;
|
||||
if (uart_handle_break(port))
|
||||
goto ignore_char;
|
||||
continue; /* Ignore character */
|
||||
}
|
||||
|
||||
if (uerstat & S3C2410_UERSTAT_FRAME)
|
||||
@ -696,13 +696,10 @@ static irqreturn_t s3c24xx_serial_rx_chars_pio(void *dev_id)
|
||||
}
|
||||
|
||||
if (uart_handle_sysrq_char(port, ch))
|
||||
goto ignore_char;
|
||||
continue; /* Ignore character */
|
||||
|
||||
uart_insert_char(port, uerstat, S3C2410_UERSTAT_OVERRUN,
|
||||
ch, flag);
|
||||
|
||||
ignore_char:
|
||||
continue;
|
||||
}
|
||||
|
||||
spin_unlock_irqrestore(&port->lock, flags);
|
||||
|
Loading…
Reference in New Issue
Block a user