diff options
author | Xiaofei Tan <tanxiaofei@huawei.com> | 2021-05-12 11:26:16 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-05-13 18:29:13 +0200 |
commit | 94bc2eb5fb4337db9ae654e5865f6b368dc1e11e (patch) | |
tree | daab63cddfa1b6d87dc5003cad90c5b00a31448c /drivers/tty/tty_io.c | |
parent | tty: tty_io: Add a blank line after declarations (diff) | |
download | linux-94bc2eb5fb4337db9ae654e5865f6b368dc1e11e.tar.xz linux-94bc2eb5fb4337db9ae654e5865f6b368dc1e11e.zip |
tty: tty_io: Fix spaces required around that ':'
Fix spaces required around that ':', reported by checkpatch.pl.
Signed-off-by: Xiaofei Tan <tanxiaofei@huawei.com>
Link: https://lore.kernel.org/r/1620811585-18582-9-git-send-email-tanxiaofei@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/tty_io.c')
-rw-r--r-- | drivers/tty/tty_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c index 1266d45730fe..ff0809d462eb 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c @@ -2341,7 +2341,7 @@ static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg) err = copy_to_user(arg, &tty->winsize, sizeof(*arg)); mutex_unlock(&tty->winsize_mutex); - return err ? -EFAULT: 0; + return err ? -EFAULT : 0; } /** |