From: Sachin Kamat Date: Thu, 8 Aug 2013 11:40:50 +0000 (+0530) Subject: serial: bfin_sport_uart: Fix incorrect placement of __initdata X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=20246fdfe2cc8d8f94ab69b8e816e6762a4c56c7;p=linux-beck.git serial: bfin_sport_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: Sachin Kamat Acked-by: Sonic Zhang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/bfin_sport_uart.c b/drivers/tty/serial/bfin_sport_uart.c index 424ed36c26f1..016c3e9d916c 100644 --- a/drivers/tty/serial/bfin_sport_uart.c +++ b/drivers/tty/serial/bfin_sport_uart.c @@ -884,7 +884,7 @@ static struct platform_driver sport_uart_driver = { }; #ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE -static __initdata struct early_platform_driver early_sport_uart_driver = { +static struct early_platform_driver early_sport_uart_driver __initdata = { .class_str = CLASS_BFIN_SPORT_CONSOLE, .pdrv = &sport_uart_driver, .requested_id = EARLY_PLATFORM_ID_UNSET,