diff options
author | Wolfgang Denk <wd@atlas.denx.de> | 2006-10-09 00:42:01 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@atlas.denx.de> | 2006-10-09 00:42:01 +0200 |
commit | 511d0c72b82aab9b807efde50fc9e390365f5ca1 (patch) | |
tree | 08f47c77d9ce164bf38b937858c9d25344639950 /drivers | |
parent | 8d4ac794365a7abb1be8e050fd1b467b94a21865 (diff) | |
download | u-boot-imx-511d0c72b82aab9b807efde50fc9e390365f5ca1.zip u-boot-imx-511d0c72b82aab9b807efde50fc9e390365f5ca1.tar.gz u-boot-imx-511d0c72b82aab9b807efde50fc9e390365f5ca1.tar.bz2 |
Coding style cleanup
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/serial.c | 6 | ||||
-rw-r--r-- | drivers/sk98lin/Makefile | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/drivers/serial.c b/drivers/serial.c index 8d1ae96..76425d8 100644 --- a/drivers/serial.c +++ b/drivers/serial.c @@ -39,7 +39,7 @@ DECLARE_GLOBAL_DATA_PTR; #if !defined(CONFIG_CONS_INDEX) #if defined (CONFIG_SERIAL_MULTI) /* with CONFIG_SERIAL_MULTI we might have no console - * on these devices + * on these devices */ #else #error "No console index specified." @@ -238,7 +238,7 @@ serial_putc(const char c) #endif #if defined(CONFIG_SERIAL_MULTI) -static inline void +static inline void serial_putc_raw_dev(unsigned int dev_index,const char c) { _serial_putc_raw(c,dev_index); @@ -310,7 +310,7 @@ serial_setbrg(void) #if defined(CONFIG_SERIAL_MULTI) DECLARE_ESERIAL_FUNCTIONS(1); -struct serial_device eserial1_device = +struct serial_device eserial1_device = INIT_ESERIAL_STRUCTURE(1,"eserial0","EUART1"); DECLARE_ESERIAL_FUNCTIONS(2); struct serial_device eserial2_device = diff --git a/drivers/sk98lin/Makefile b/drivers/sk98lin/Makefile index ac21e02..76c750c 100644 --- a/drivers/sk98lin/Makefile +++ b/drivers/sk98lin/Makefile @@ -104,4 +104,3 @@ include $(SRCTREE)/rules.mk sinclude $(obj).depend ######################################################################### - |