diff options
author | Simon Glass <sjg@chromium.org> | 2018-12-28 14:23:07 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-01-14 17:47:13 -0700 |
commit | 0171f432047e86305593bb1eb1cc86f853e55029 (patch) | |
tree | d195e987c3ce941087d37eb4eca617ae94a914aa /include/common.h | |
parent | ccd2979a8d59636ca0cf288db03e1298dc120123 (diff) | |
download | u-boot-0171f432047e86305593bb1eb1cc86f853e55029.tar.gz |
serial: Move new functions to serial.h
We should not be adding new functions to common.h. Move these recently
added functions to serial.h.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/common.h b/include/common.h index 657cc404cf..028a735a5c 100644 --- a/include/common.h +++ b/include/common.h @@ -350,8 +350,6 @@ void smp_set_core_boot_addr(unsigned long addr, int corenr); void smp_kick_all_cpus(void); /* $(CPU)/serial.c */ -struct serial_device_info; - int serial_init (void); void serial_setbrg (void); void serial_putc (const char); @@ -359,9 +357,6 @@ void serial_putc_raw(const char); void serial_puts (const char *); int serial_getc (void); int serial_tstc (void); -int serial_getconfig(uint *config); -int serial_setconfig(uint config); -int serial_getinfo(struct serial_device_info *info); /* $(CPU)/speed.c */ int get_clocks (void); |