On Sat, 2009-05-16 at 14:02 +0800, Len Brown wrote: > From: Len Brown <len.brown@xxxxxxxxx> > > drivers/built-in.o: In function `intel_opregion_init': > (.text+0x9d540): undefined reference to `acpi_video_register' Hi, When the KMS is selected in kernel configuration, the issue will be fixed. But if KMS is not set in kernel configuration, the issue will still exist. How about that the ACPI_VIDEO depends on the I915 instead of I915_KMS? Thanks. --- drivers/gpu/drm/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) Index: linux-2.6/drivers/gpu/drm/Kconfig =================================================================== --- linux-2.6.orig/drivers/gpu/drm/Kconfig 2009-05-15 13:53:06.000000000 +0800 +++ linux-2.6/drivers/gpu/drm/Kconfig 2009-05-18 10:45:37.000000000 +0800 @@ -71,6 +71,10 @@ select FB_CFB_COPYAREA select FB_CFB_IMAGEBLIT select FB + select VIDEO_OUTPUT_CONTROL if ACPI + select BACKLIGHT_CLASS_DEVICE if ACPI + select INPUT if ACPI + select ACPI_VIDEO if ACPI tristate "i915 driver" help Choose this option if you have a system that has Intel 830M, 845G, > > http://bugzilla.kernel.org/show_bug.cgi?id=13165 > > Signed-off-by: Len Brown <len.brown@xxxxxxxxx> > --- > drivers/gpu/drm/Kconfig | 6 ++++++ > 1 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig > index 3a22eb9..f33d252 100644 > --- a/drivers/gpu/drm/Kconfig > +++ b/drivers/gpu/drm/Kconfig > @@ -83,6 +83,12 @@ config DRM_I915 > config DRM_I915_KMS > bool "Enable modesetting on intel by default" > depends on DRM_I915 > + # i915 KMS depends on ACPI_VIDEO when ACPI is enabled > + # but for select to work, need to select ACPI_VIDEO's dependencies, ick > + select VIDEO_OUTPUT_CONTROL if ACPI > + select BACKLIGHT_CLASS_DEVICE if ACPI > + select INPUT if ACPI > + select ACPI_VIDEO if ACPI > help > Choose this option if you want kernel modesetting enabled by default, > and you have a new enough userspace to support this. Running old -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html