aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorOvidiu Panait <ovidiu.panait@windriver.com>2020-07-24 14:12:22 +0300
committerTom Rini <trini@konsulko.com>2020-08-06 14:27:27 -0400
commit39a192231b065bb026c170d9384b622009796a3d (patch)
tree7d8f86de40cbd00baad046a03507e7ece36c0ab6 /include
parent3a4b52a9e5a817e2c19434290c4e1fe1d792cba2 (diff)
downloadu-boot-39a192231b065bb026c170d9384b622009796a3d.zip
u-boot-39a192231b065bb026c170d9384b622009796a3d.tar.gz
u-boot-39a192231b065bb026c170d9384b622009796a3d.tar.bz2
drivers: serial: Make serial_initialize return int
serial_initialize is called only during the common init sequence, after relocation (in common/board_r.c). Because it has a void return value, it has to wrapped in initr_serial. In order to be able to get rid of this indirection, make serial_initialize return int. Remove extern from prototype in order to silence the following checkpatch warning: check: extern prototypes should be avoided in .h files Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Diffstat (limited to 'include')
-rw-r--r--include/serial.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/serial.h b/include/serial.h
index c590637..6d1e62c 100644
--- a/include/serial.h
+++ b/include/serial.h
@@ -42,10 +42,10 @@ extern struct serial_device eserial5_device;
extern struct serial_device eserial6_device;
extern void serial_register(struct serial_device *);
-extern void serial_initialize(void);
extern void serial_stdio_init(void);
extern int serial_assign(const char *name);
extern void serial_reinit_all(void);
+int serial_initialize(void);
/* For usbtty */
#ifdef CONFIG_USB_TTY