}
 };
 
-static struct omap_lcd_config ams_delta_lcd_config = {
+static struct omap_lcd_config ams_delta_lcd_config __initdata = {
        .ctrl_name      = "internal",
 };
 
 #define LATCH1_GPIO_BASE       232
 #define LATCH1_NGPIO           8
 
-static struct resource latch1_resources[] __initconst = {
+static struct resource latch1_resources[] = {
        [0] = {
                .name   = "dat",
                .start  = LATCH1_PHYS,
        },
 };
 
-static struct bgpio_pdata latch1_pdata __initconst = {
+static struct bgpio_pdata latch1_pdata = {
        .base   = LATCH1_GPIO_BASE,
        .ngpio  = LATCH1_NGPIO,
 };
        },
 };
 
-static struct resource latch2_resources[] __initconst = {
+static struct resource latch2_resources[] = {
        [0] = {
                .name   = "dat",
                .start  = LATCH2_PHYS,
        },
 };
 
-static struct bgpio_pdata latch2_pdata __initconst = {
+static struct bgpio_pdata latch2_pdata = {
        .base   = AMS_DELTA_LATCH2_GPIO_BASE,
        .ngpio  = AMS_DELTA_LATCH2_NGPIO,
 };
        },
 };
 
-static struct gpio latch_gpios[] __initconst = {
+static const struct gpio latch_gpios[] __initconst = {
        {
                .gpio   = LATCH1_GPIO_BASE + 6,
                .flags  = GPIOF_OUT_INIT_LOW,
        .id     = -1,
 };
 
-static struct gpio_led gpio_leds[] __initconst = {
+static const struct gpio_led gpio_leds[] __initconst = {
        {
                .name            = "camera",
                .gpio            = LATCH1_GPIO_BASE + 0,
        },
 };
 
-static struct gpio_led_platform_data leds_pdata __initconst = {
+static const struct gpio_led_platform_data leds_pdata __initconst = {
        .leds           = gpio_leds,
        .num_leds       = ARRAY_SIZE(gpio_leds),
 };
        &ams_delta_camera_device,
 };
 
-static struct platform_device *late_devices[] __initconst = {
+static struct platform_device *late_devices[] __initdata = {
        &ams_delta_nand_device,
        &ams_delta_lcd_device,
 };
 
        return gpio_get_value(AMS_DELTA_GPIO_PIN_NAND_RB);
 }
 
-static struct gpio _mandatory_gpio[] __initconst_or_module = {
+static const struct gpio _mandatory_gpio[] = {
        {
                .gpio   = AMS_DELTA_GPIO_PIN_NAND_NCE,
                .flags  = GPIOF_OUT_INIT_HIGH,