mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-09-05 14:27:48 +00:00
section mismatches fixed:
* sanitize modelist used preferred_mode which was __initdata and shouldn't have been * init_wdog only runs once and accesses __initdata, so it's been made __init
This commit is contained in:
@@ -46,7 +46,7 @@
|
||||
|
||||
u8 edid[256];
|
||||
|
||||
struct fb_videomode __initdata preferred_mode;
|
||||
struct fb_videomode preferred_mode;
|
||||
|
||||
static struct mxc_iomux_pin_cfg __initdata mx51_efikamx_display_iomux_pins[] = {
|
||||
/* display reset pin */
|
||||
|
||||
@@ -82,7 +82,7 @@ static struct mxc_iomux_pin_cfg __initdata mx51_efikamx_wdog1_iomux_pins[] = {
|
||||
},
|
||||
};
|
||||
|
||||
void mx51_efikamx_init_wdog(void)
|
||||
__init void mx51_efikamx_init_wdog(void)
|
||||
{
|
||||
/* Watchdog */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user