Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 89332ea0 authored by Roman Kiryanov's avatar Roman Kiryanov Committed by Greg Kroah-Hartman
Browse files

Fix whitespace in drivers/tty/goldfish.c



Change-Id: I5454fc73d9f8a9fbafc1e2ccd37fe45685cf64d7
Signed-off-by: default avatarRoman Kiryanov <rkir@google.com>
parent 86f9f957
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -181,6 +181,7 @@ static void goldfish_tty_shutdown(struct tty_port *port)
static int goldfish_tty_open(struct tty_struct *tty, struct file *filp)
{
	struct goldfish_tty *qtty = &goldfish_ttys[tty->index];

	return tty_port_open(&qtty->port, tty, filp);
}

@@ -210,6 +211,7 @@ static int goldfish_tty_chars_in_buffer(struct tty_struct *tty)
{
	struct goldfish_tty *qtty = &goldfish_ttys[tty->index];
	void __iomem *base = qtty->base;

	return readl(base + GOLDFISH_TTY_REG_BYTES_READY);
}