|
@@ -183,9 +183,8 @@ int s5p_serial##port##_tstc(void) { return serial_tstc_dev(port); } \
|
|
void s5p_serial##port##_putc(const char c) { serial_putc_dev(c, port); } \
|
|
void s5p_serial##port##_putc(const char c) { serial_putc_dev(c, port); } \
|
|
void s5p_serial##port##_puts(const char *s) { serial_puts_dev(s, port); }
|
|
void s5p_serial##port##_puts(const char *s) { serial_puts_dev(s, port); }
|
|
|
|
|
|
-#define INIT_S5P_SERIAL_STRUCTURE(port, name, bus) { \
|
|
|
|
|
|
+#define INIT_S5P_SERIAL_STRUCTURE(port, name) { \
|
|
name, \
|
|
name, \
|
|
- bus, \
|
|
|
|
s5p_serial##port##_init, \
|
|
s5p_serial##port##_init, \
|
|
NULL, \
|
|
NULL, \
|
|
s5p_serial##port##_setbrg, \
|
|
s5p_serial##port##_setbrg, \
|
|
@@ -196,16 +195,16 @@ void s5p_serial##port##_puts(const char *s) { serial_puts_dev(s, port); }
|
|
|
|
|
|
DECLARE_S5P_SERIAL_FUNCTIONS(0);
|
|
DECLARE_S5P_SERIAL_FUNCTIONS(0);
|
|
struct serial_device s5p_serial0_device =
|
|
struct serial_device s5p_serial0_device =
|
|
- INIT_S5P_SERIAL_STRUCTURE(0, "s5pser0", "S5PUART0");
|
|
|
|
|
|
+ INIT_S5P_SERIAL_STRUCTURE(0, "s5pser0");
|
|
DECLARE_S5P_SERIAL_FUNCTIONS(1);
|
|
DECLARE_S5P_SERIAL_FUNCTIONS(1);
|
|
struct serial_device s5p_serial1_device =
|
|
struct serial_device s5p_serial1_device =
|
|
- INIT_S5P_SERIAL_STRUCTURE(1, "s5pser1", "S5PUART1");
|
|
|
|
|
|
+ INIT_S5P_SERIAL_STRUCTURE(1, "s5pser1");
|
|
DECLARE_S5P_SERIAL_FUNCTIONS(2);
|
|
DECLARE_S5P_SERIAL_FUNCTIONS(2);
|
|
struct serial_device s5p_serial2_device =
|
|
struct serial_device s5p_serial2_device =
|
|
- INIT_S5P_SERIAL_STRUCTURE(2, "s5pser2", "S5PUART2");
|
|
|
|
|
|
+ INIT_S5P_SERIAL_STRUCTURE(2, "s5pser2");
|
|
DECLARE_S5P_SERIAL_FUNCTIONS(3);
|
|
DECLARE_S5P_SERIAL_FUNCTIONS(3);
|
|
struct serial_device s5p_serial3_device =
|
|
struct serial_device s5p_serial3_device =
|
|
- INIT_S5P_SERIAL_STRUCTURE(3, "s5pser3", "S5PUART3");
|
|
|
|
|
|
+ INIT_S5P_SERIAL_STRUCTURE(3, "s5pser3");
|
|
|
|
|
|
__weak struct serial_device *default_serial_console(void)
|
|
__weak struct serial_device *default_serial_console(void)
|
|
{
|
|
{
|