aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorOliver O'Halloran <oohall@gmail.com>2016-12-21 15:52:31 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-01-04 17:15:57 +1100
commit3873e455af0d1f13b476d897515720e4ba114669 (patch)
tree23f40a127904a33d39739144837aa3eb61f17fd7 /hw
parentf332fb40baa5da03ee7db4deaa1eb589f21272f0 (diff)
downloadskiboot-3873e455af0d1f13b476d897515720e4ba114669.zip
skiboot-3873e455af0d1f13b476d897515720e4ba114669.tar.gz
skiboot-3873e455af0d1f13b476d897515720e4ba114669.tar.bz2
console: remove con_ops->flush()
Flushing the OPAL console is now handled by a driver specific OPAL call handler so this can be removed. Signed-off-by: Oliver O'Halloran <oohall@gmail.com> Reviewed-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/lpc-uart.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/hw/lpc-uart.c b/hw/lpc-uart.c
index 0b78a76..17abe08 100644
--- a/hw/lpc-uart.c
+++ b/hw/lpc-uart.c
@@ -170,11 +170,8 @@ static size_t uart_con_write(const char *buf, size_t len)
return written;
}
-static int64_t uart_con_flush(void);
-
static struct con_ops uart_con_driver = {
.write = uart_con_write,
- .flush = uart_con_flush
};
/*