Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: ov13b10: Add ACPI ID for ASUS Z13 Flow laptop

The ASUS ROG Flow Z13 2025 (GZ302) laptop uses an OV13B10 sensor with a
non-standard ACPI ID of OMNI13B1 instead of the expected OVTI13B1.

Add this ACPI ID to the driver to make the front-facing camera work on
these laptops.

Signed-off-by: Adam J. Sypniewski <ajsyp@syptech.net>
Reviewed-by: Hans de Goede <hansg@kernel.org>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>

authored by

Adam J. Sypniewski and committed by
Hans Verkuil
74e53de7 3dc9770b

+1
+1
drivers/media/i2c/ov13b10.c
··· 1693 1693 static const struct acpi_device_id ov13b10_acpi_ids[] = { 1694 1694 {"OVTIDB10"}, 1695 1695 {"OVTI13B1"}, 1696 + {"OMNI13B1"}, /* ASUS ROG Flow Z13 (GZ302) uses this ACPI ID */ 1696 1697 { /* sentinel */ } 1697 1698 }; 1698 1699