summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Sypniewski <ajsyp@syptech.net>2025-10-21 11:46:19 -0400
committerHans Verkuil <hverkuil+cisco@kernel.org>2025-10-29 14:07:01 +0100
commit74e53de740385dc0b9e35cadb8d844351dd28e97 (patch)
tree9892b5cb8602eec7f9cb4c2f3db746270189d767
parent3dc9770bf2d521e992df5ebcfdbf1dc68653788b (diff)
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>
-rw-r--r--drivers/media/i2c/ov13b10.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/i2c/ov13b10.c b/drivers/media/i2c/ov13b10.c
index 869bc78ed792..5421874732bc 100644
--- a/drivers/media/i2c/ov13b10.c
+++ b/drivers/media/i2c/ov13b10.c
@@ -1693,6 +1693,7 @@ static DEFINE_RUNTIME_DEV_PM_OPS(ov13b10_pm_ops, ov13b10_suspend,
static const struct acpi_device_id ov13b10_acpi_ids[] = {
{"OVTIDB10"},
{"OVTI13B1"},
+ {"OMNI13B1"}, /* ASUS ROG Flow Z13 (GZ302) uses this ACPI ID */
{ /* sentinel */ }
};