aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2016-11-02 18:07:37 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-11-02 18:24:09 +1100
commit76c5eb99a6e8356ffd7479ec810d48c466dd6907 (patch)
tree9a6a7f41b88928f344b6f1c0cbdc5b789526e016 /include
parente6f180d10a6f09f9dcde28629a691debf2284169 (diff)
downloadskiboot-76c5eb99a6e8356ffd7479ec810d48c466dd6907.zip
skiboot-76c5eb99a6e8356ffd7479ec810d48c466dd6907.tar.gz
skiboot-76c5eb99a6e8356ffd7479ec810d48c466dd6907.tar.bz2
mambo: Convert console read/write from asm to C
Also changes the function name: mambo_read/write() -> mambo_console_read/write() Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/console.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/console.h b/include/console.h
index b6fc8bf..5cb1227 100644
--- a/include/console.h
+++ b/include/console.h
@@ -64,8 +64,8 @@ extern void set_console(struct con_ops *driver);
extern void console_complete_flush(void);
-extern int mambo_read(void);
-extern void mambo_write(const char *buf, size_t count);
+extern int mambo_console_read(void);
+extern void mambo_console_write(const char *buf, size_t count);
extern void enable_mambo_console(void);
ssize_t console_write(bool flush_to_drivers, const void *buf, size_t count);