diff options
author | Tom Rix <trix@redhat.com> | 2020-10-19 12:32:27 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-11-09 16:05:34 +0100 |
commit | 552c08a8e03f09ee7f44950d0f6d9bd4599ff1f6 (patch) | |
tree | 0da9427b010f1f7320cd1c4e3b649ea19d71b47b | |
parent | 6a80467a21ca4268f1d97daa1f43b66b86fe3887 (diff) |
ipack: iopctal: remove unneeded break
A break is not needed if it is preceded by a return
Acked-by: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201019193227.12738-1-trix@redhat.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/ipack/devices/ipoctal.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/ipack/devices/ipoctal.c b/drivers/ipack/devices/ipoctal.c index d480a514c983..3940714e4397 100644 --- a/drivers/ipack/devices/ipoctal.c +++ b/drivers/ipack/devices/ipoctal.c @@ -544,7 +544,6 @@ static void ipoctal_set_termios(struct tty_struct *tty, break; default: return; - break; } baud = tty_get_baud_rate(tty); |