drm/i915: intel_lvds.c fix section mismatch
authorJaswinder Singh Rajput <jaswinder@kernel.org>
Wed, 3 Jun 2009 23:41:19 +0000 (09:41 +1000)
committerDave Airlie <airlied@redhat.com>
Wed, 3 Jun 2009 23:41:19 +0000 (09:41 +1000)
intel_no_lvds[] does not require __initdata as it is used only by

void intel_lvds_init(struct drm_device *dev).

Signed-off-by: Jaswinder Singh Rajput <jaswinder@kernel.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/i915/intel_lvds.c

index c92a64a..53cccfa 100644 (file)
@@ -387,7 +387,7 @@ static int __init intel_no_lvds_dmi_callback(const struct dmi_system_id *id)
 }
 
 /* These systems claim to have LVDS, but really don't */
-static const struct dmi_system_id __initdata intel_no_lvds[] = {
+static const struct dmi_system_id intel_no_lvds[] = {
        {
                .callback = intel_no_lvds_dmi_callback,
                .ident = "Apple Mac Mini (Core series)",