Prev: [092/197] x86: Fix double enable_IR_x2apic() call on SMP kernel on !SMP boards
Next: [PATCH tip/core/urgent 2/3] KEYS: Fix an RCU warning in the reading of user keys
From: Greg KH on 22 Apr 2010 16:00 2.6.32-stable review patch. If anyone has any objections, please let us know. ------------------ From: Stefan Bader <stefan.bader(a)canonical.com> commit 9875557ee8247c3f7390d378c027b45c7535a224 upstream. BugLink: http://bugs.launchpad.net/ubuntu/bugs/544671 This system claims to have a LVDS but has not. Signed-off-by: Stephane Graber <stgraber(a)ubuntu.com> Signed-off-by: Stefan Bader <stefan.bader(a)canonical.com> Signed-off-by: Eric Anholt <eric(a)anholt.net> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- drivers/gpu/drm/i915/intel_lvds.c | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/drivers/gpu/drm/i915/intel_lvds.c +++ b/drivers/gpu/drm/i915/intel_lvds.c @@ -885,6 +885,14 @@ static const struct dmi_system_id intel_ DMI_MATCH(DMI_PRODUCT_VERSION, "AO00001JW"), }, }, + { + .callback = intel_no_lvds_dmi_callback, + .ident = "Clientron U800", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Clientron"), + DMI_MATCH(DMI_PRODUCT_NAME, "U800"), + }, + }, { } /* terminating entry */ }; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |