> -----Original Message----- > From: Intel-gfx <[email protected]> On Behalf Of Ankit > Nautiyal > Sent: Friday, December 26, 2025 10:04 AM > To: [email protected]; [email protected] > Cc: [email protected]; [email protected] > Subject: [PATCH] drm/i915/quirks: Fix device id for > QUIRK_EDP_LIMIT_RATE_HBR2 entry > > Update the device ID for Dell XPS 13 7390 2-in-1 in the quirk > `QUIRK_EDP_LIMIT_RATE_HBR2` entry. The previous ID (0x8a12) was > incorrect; the correct ID is 0x8a52.
Shouldn't it be just a period and capital T Other than that LGTM, Reviewed-by: Suraj Kandpal <[email protected]> > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969 > Fixes: 21c586d9233a ("drm/i915/dp: Add device specific quirk to limit eDP > rate to HBR2") > Cc: Jani Nikula <[email protected]> > Cc: Ville Syrjälä <[email protected]> > Cc: Ankit Nautiyal <[email protected]> > Cc: <[email protected]> # v6.18+ > Signed-off-by: Ankit Nautiyal <[email protected]> > --- > drivers/gpu/drm/i915/display/intel_quirks.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c > b/drivers/gpu/drm/i915/display/intel_quirks.c > index d2e16b79d6be..1abbdd426e58 100644 > --- a/drivers/gpu/drm/i915/display/intel_quirks.c > +++ b/drivers/gpu/drm/i915/display/intel_quirks.c > @@ -239,7 +239,7 @@ static struct intel_quirk intel_quirks[] = { > { 0x0f31, 0x103c, 0x220f, quirk_invert_brightness }, > > /* Dell XPS 13 7390 2-in-1 */ > - { 0x8a12, 0x1028, 0x08b0, quirk_edp_limit_rate_hbr2 }, > + { 0x8a52, 0x1028, 0x08b0, quirk_edp_limit_rate_hbr2 }, > }; > > static const struct intel_dpcd_quirk intel_dpcd_quirks[] = { > -- > 2.34.1
