aboutsummaryrefslogtreecommitdiff
path: root/include/console.h
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 /include/console.h
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 'include/console.h')
-rw-r--r--include/console.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/console.h b/include/console.h
index 425f35e..f7cf999 100644
--- a/include/console.h
+++ b/include/console.h
@@ -51,7 +51,6 @@ struct con_ops {
size_t (*write)(const char *buf, size_t len);
size_t (*read)(char *buf, size_t len);
bool (*poll_read)(void);
- int64_t (*flush)(void);
};
struct opal_con_ops {