From: Peter Hurley Date: Sun, 8 Nov 2015 18:01:11 +0000 (-0500) Subject: tty: core: Remove redundant oom message X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=25080652a2d4a6d27a51fc1412e258f467174615;p=linux-beck.git tty: core: Remove redundant oom message kmalloc() already emits a diagnostic for failed allocations; remove tty-specific message. Signed-off-by: Peter Hurley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c index adc0229f6b5d..336714cf370a 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c @@ -1580,10 +1580,8 @@ void tty_free_termios(struct tty_struct *tty) tp = tty->driver->termios[idx]; if (tp == NULL) { tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL); - if (tp == NULL) { - pr_warn("tty: no memory to save termios state.\n"); + if (tp == NULL) return; - } tty->driver->termios[idx] = tp; } *tp = tty->termios;