diff options
author | Oliver O'Halloran <oohall@gmail.com> | 2016-12-21 15:52:31 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-01-04 17:15:57 +1100 |
commit | 3873e455af0d1f13b476d897515720e4ba114669 (patch) | |
tree | 23f40a127904a33d39739144837aa3eb61f17fd7 /include | |
parent | f332fb40baa5da03ee7db4deaa1eb589f21272f0 (diff) | |
download | skiboot-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')
-rw-r--r-- | include/console.h | 1 |
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 { |