提交 6734a834 编写于 作者: S Sachin Kamat 提交者: Greg Kroah-Hartman

serial: bfin_uart: Fix incorrect placement of __initdata

__initdata should be placed between the variable name and equal
sign for the variable to be placed in the intended section.
Signed-off-by: NSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 20246fdf
...@@ -1176,7 +1176,7 @@ bfin_earlyprintk_console_write(struct console *co, const char *s, unsigned int c ...@@ -1176,7 +1176,7 @@ bfin_earlyprintk_console_write(struct console *co, const char *s, unsigned int c
* don't let the common infrastructure play with things. (see calls to setup * don't let the common infrastructure play with things. (see calls to setup
* & earlysetup in ./kernel/printk.c:register_console() * & earlysetup in ./kernel/printk.c:register_console()
*/ */
static struct __initdata console bfin_early_serial_console = { static struct console bfin_early_serial_console __initdata = {
.name = "early_BFuart", .name = "early_BFuart",
.write = bfin_earlyprintk_console_write, .write = bfin_earlyprintk_console_write,
.device = uart_console_device, .device = uart_console_device,
...@@ -1398,7 +1398,7 @@ static struct platform_driver bfin_serial_driver = { ...@@ -1398,7 +1398,7 @@ static struct platform_driver bfin_serial_driver = {
}; };
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) #if defined(CONFIG_SERIAL_BFIN_CONSOLE)
static __initdata struct early_platform_driver early_bfin_serial_driver = { static struct early_platform_driver early_bfin_serial_driver __initdata = {
.class_str = CLASS_BFIN_CONSOLE, .class_str = CLASS_BFIN_CONSOLE,
.pdrv = &bfin_serial_driver, .pdrv = &bfin_serial_driver,
.requested_id = EARLY_PLATFORM_ID_UNSET, .requested_id = EARLY_PLATFORM_ID_UNSET,
...@@ -1477,7 +1477,7 @@ static struct platform_driver bfin_earlyprintk_driver = { ...@@ -1477,7 +1477,7 @@ static struct platform_driver bfin_earlyprintk_driver = {
}, },
}; };
static __initdata struct early_platform_driver early_bfin_earlyprintk_driver = { static struct early_platform_driver early_bfin_earlyprintk_driver __initdata = {
.class_str = CLASS_BFIN_EARLYPRINTK, .class_str = CLASS_BFIN_EARLYPRINTK,
.pdrv = &bfin_earlyprintk_driver, .pdrv = &bfin_earlyprintk_driver,
.requested_id = EARLY_PLATFORM_ID_UNSET, .requested_id = EARLY_PLATFORM_ID_UNSET,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册