diff options
Diffstat (limited to 'drivers/tty/tty_buffer.c')
-rw-r--r-- | drivers/tty/tty_buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/tty/tty_buffer.c b/drivers/tty/tty_buffer.c index 2f78b77f0f81..4cf263d7dffc 100644 --- a/drivers/tty/tty_buffer.c +++ b/drivers/tty/tty_buffer.c | |||
@@ -286,7 +286,8 @@ static int __tty_buffer_request_room(struct tty_port *port, size_t size, | |||
286 | change = (b->flags & TTYB_NORMAL) && (~flags & TTYB_NORMAL); | 286 | change = (b->flags & TTYB_NORMAL) && (~flags & TTYB_NORMAL); |
287 | if (change || left < size) { | 287 | if (change || left < size) { |
288 | /* This is the slow path - looking for new buffers to use */ | 288 | /* This is the slow path - looking for new buffers to use */ |
289 | if ((n = tty_buffer_alloc(port, size)) != NULL) { | 289 | n = tty_buffer_alloc(port, size); |
290 | if (n != NULL) { | ||
290 | n->flags = flags; | 291 | n->flags = flags; |
291 | buf->tail = n; | 292 | buf->tail = n; |
292 | b->commit = b->used; | 293 | b->commit = b->used; |