diff mbox series

[v2,106/106] ccs: Add CCS ACPI device ID

Message ID 20201007084557.25843-97-sakari.ailus@linux.intel.com (mailing list archive)
State New, archived
Headers show
Series CCS driver | expand

Commit Message

Sakari Ailus Oct. 7, 2020, 8:45 a.m. UTC
The CCS compliant sensors use device ID "MIPI0200". Use this id for ACPI
device matching.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
---
 drivers/media/i2c/ccs/ccs-core.c | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

Mauro Carvalho Chehab Nov. 5, 2020, 12:44 p.m. UTC | #1
Em Wed,  7 Oct 2020 11:45:57 +0300
Sakari Ailus <sakari.ailus@linux.intel.com> escreveu:

> The CCS compliant sensors use device ID "MIPI0200". Use this id for ACPI
> device matching.

Better to place this patch before the one dropping I2C table, as it
helps to understand why you dropped the I2C table.

> 
> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
> ---
>  drivers/media/i2c/ccs/ccs-core.c | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/drivers/media/i2c/ccs/ccs-core.c b/drivers/media/i2c/ccs/ccs-core.c
> index 10ed3d01af16..297c5373a305 100644
> --- a/drivers/media/i2c/ccs/ccs-core.c
> +++ b/drivers/media/i2c/ccs/ccs-core.c
> @@ -3604,6 +3604,12 @@ static const struct ccs_device smia_device = {
>  
>  static const struct ccs_device ccs_device = {};
>  
> +static const struct acpi_device_id ccs_acpi_table[] = {
> +	{ .id = "MIPI0200", .driver_data = (unsigned long)&ccs_device },
> +	{ },
> +};
> +MODULE_DEVICE_TABLE(acpi, ccs_acpi_table);
> +
>  static const struct of_device_id ccs_of_table[] = {
>  	{ .compatible = "mipi-ccs-1.1", .data = &ccs_device },
>  	{ .compatible = "mipi-ccs-1.0", .data = &ccs_device },
> @@ -3620,6 +3626,7 @@ static const struct dev_pm_ops ccs_pm_ops = {
>  
>  static struct i2c_driver ccs_i2c_driver = {
>  	.driver	= {
> +		.acpi_match_table = ccs_acpi_table,
>  		.of_match_table = ccs_of_table,
>  		.name = CCS_NAME,
>  		.pm = &ccs_pm_ops,



Thanks,
Mauro
diff mbox series

Patch

diff --git a/drivers/media/i2c/ccs/ccs-core.c b/drivers/media/i2c/ccs/ccs-core.c
index 10ed3d01af16..297c5373a305 100644
--- a/drivers/media/i2c/ccs/ccs-core.c
+++ b/drivers/media/i2c/ccs/ccs-core.c
@@ -3604,6 +3604,12 @@  static const struct ccs_device smia_device = {
 
 static const struct ccs_device ccs_device = {};
 
+static const struct acpi_device_id ccs_acpi_table[] = {
+	{ .id = "MIPI0200", .driver_data = (unsigned long)&ccs_device },
+	{ },
+};
+MODULE_DEVICE_TABLE(acpi, ccs_acpi_table);
+
 static const struct of_device_id ccs_of_table[] = {
 	{ .compatible = "mipi-ccs-1.1", .data = &ccs_device },
 	{ .compatible = "mipi-ccs-1.0", .data = &ccs_device },
@@ -3620,6 +3626,7 @@  static const struct dev_pm_ops ccs_pm_ops = {
 
 static struct i2c_driver ccs_i2c_driver = {
 	.driver	= {
+		.acpi_match_table = ccs_acpi_table,
 		.of_match_table = ccs_of_table,
 		.name = CCS_NAME,
 		.pm = &ccs_pm_ops,