serial: Properly spell out the structure member names of serial_driver

Properly spell out the whole structure member names when an initialized
varible is instantiated from the struct serial_driver. In case the
structure definition for struct serial_driver undergoes reordering,
there will be no impact on variables defined based on this structure.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: C Nauman <cnauman@diagraph.com>
Cc: Minkyu Kang <mk7.kang@samsung.com>
Cc: Michal Simek <monstr@monstr.eu>
This commit is contained in:
Marek Vasut
2012-09-09 18:48:28 +02:00
committed by Tom Rini
parent 89143fb3b0
commit 90bad891e1
9 changed files with 96 additions and 93 deletions

View File

@@ -60,14 +60,14 @@ int quad_tstc_##n(void) \
} \
struct serial_device zoom2_serial_device##n = \
{ \
__stringify(n), \
quad_init_##n, \
NULL, \
quad_setbrg_##n, \
quad_getc_##n, \
quad_tstc_##n, \
quad_putc_##n, \
quad_puts_##n, \
.name = __stringify(n), \
.start = quad_init_##n, \
.stop = NULL, \
.setbrg = quad_setbrg_##n, \
.getc = quad_getc_##n, \
.tstc = quad_tstc_##n, \
.putc = quad_putc_##n, \
.puts = quad_puts_##n, \
};
#endif /* ZOOM2_SERIAL_H */