Skip to content

Front Camera Fix #165

@eduduckgmbh

Description

@eduduckgmbh

From: Anonymous Developer anonymous@example.com
Date: Sun, 24 May 2026 11:42:00 +0200
Subject: [PATCH] media: i2c: ov5693: Add OVTI5693 ACPI ID matching

On the Microsoft Surface Pro 9, the front-facing OmniVision 5693
camera sensor is listed in the ACPI tables as device ID "OVTI5693".
However, the ov5693 driver's ACPI matching table currently only
includes support for the "INT33BE" ID.

As a result, the kernel fails to automatically load and bind the
ov5693 driver to the front camera device on Surface Pro 9, despite the
driver being fully compatible once bound.

Add the missing "OVTI5693" entry to the ov5693 ACPI match table to
enable automatic driver matching, loading, and binding.

drivers/media/i2c/ov5693.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/media/i2c/ov5693.c b/drivers/media/i2c/ov5693.c
--- a/drivers/media/i2c/ov5693.c
+++ b/drivers/media/i2c/ov5693.c
@@ -1415,6 +1415,7 @@
static const struct acpi_device_id ov5693_acpi_match[] = {
{"INT33BE"},

  • {"OVTI5693"},
    {},
    };
    MODULE_DEVICE_TABLE(acpi, ov5693_acpi_match);
    --
    2.43.0

ov5693_acpi_id.patch

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions