Skip to content

Commit e1d4471

Browse files
Darrell Kavanaghardbiesheuvel
authored andcommitted
firmware/efi sysfb_efi: Add quirk for Lenovo IdeaPad Duet 3
Another Lenovo convertable which reports a landscape resolution of 1920x1200 with a pitch of (1920 * 4) bytes, while the actual framebuffer has a resolution of 1200x1920 with a pitch of (1200 * 4) bytes. Signed-off-by: Darrell Kavanagh <darrell.kavanagh@gmail.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
1 parent 0e68b55 commit e1d4471

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

drivers/firmware/efi/sysfb_efi.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,14 @@ static const struct dmi_system_id efifb_dmi_swap_width_height[] __initconst = {
264264
"Lenovo ideapad D330-10IGM"),
265265
},
266266
},
267+
{
268+
/* Lenovo IdeaPad Duet 3 10IGL5 with 1200x1920 portrait screen */
269+
.matches = {
270+
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
271+
DMI_EXACT_MATCH(DMI_PRODUCT_VERSION,
272+
"IdeaPad Duet 3 10IGL5"),
273+
},
274+
},
267275
{},
268276
};
269277

0 commit comments

Comments
 (0)