Commit 66c6ceae authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

tty_audit: fix checkpatch complaint

Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 4129a645
...@@ -27,7 +27,7 @@ static struct tty_audit_buf *tty_audit_buf_alloc(int major, int minor, ...@@ -27,7 +27,7 @@ static struct tty_audit_buf *tty_audit_buf_alloc(int major, int minor,
{ {
struct tty_audit_buf *buf; struct tty_audit_buf *buf;
buf = kmalloc(sizeof (*buf), GFP_KERNEL); buf = kmalloc(sizeof(*buf), GFP_KERNEL);
if (!buf) if (!buf)
goto err; goto err;
if (PAGE_SIZE != N_TTY_BUF_SIZE) if (PAGE_SIZE != N_TTY_BUF_SIZE)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment