On Mon, 28 Jan 2013, Sedat Dilek <sedat.dilek at gmail.com> wrote: > ... > static struct intel_quirk intel_quirks[] = { > /* HP Mini needs pipe A force quirk (LP: #322104) */ > { 0x27ae, 0x103c, 0x361a, quirk_pipea_force }, > ... > } > > Triple - which value is what? I guess you figured it out, but just a few lines up there's [1]: struct intel_quirk { int device; int subsystem_vendor; int subsystem_device; void (*hook)(struct drm_device *dev); }; where device, subsystem_vendor, and subsystem_device map to Device, SVendor, and SDevice of the gfx controller in 'lspci -vmnn' output. HTH, Jani. [1] http://cgit.freedesktop.org/~danvet/drm-intel/tree/drivers/gpu/drm/i915/intel_display.c?h=drm-intel-nightly#n8574