From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-lf1-f65.google.com ([209.85.167.65]:33110 "EHLO mail-lf1-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727252AbeIUCdX (ORCPT ); Thu, 20 Sep 2018 22:33:23 -0400 From: Ricardo Ribalda Delgado To: Pavel Machek , Sakari Ailus , Mauro Carvalho Chehab , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, Hans Verkuil , Laurent Pinchart Cc: Ricardo Ribalda Delgado Subject: [PATCH v4 5/7] [media] ad5820: Add support for acpi autoload Date: Thu, 20 Sep 2018 22:47:49 +0200 Message-Id: <20180920204751.29117-5-ricardo.ribalda@gmail.com> In-Reply-To: <20180920204751.29117-1-ricardo.ribalda@gmail.com> References: <20180920204751.29117-1-ricardo.ribalda@gmail.com> Sender: linux-media-owner@vger.kernel.org List-ID: Allow module autoloading of ad5820 ACPI devices. Signed-off-by: Ricardo Ribalda Delgado --- drivers/media/i2c/ad5820.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/drivers/media/i2c/ad5820.c b/drivers/media/i2c/ad5820.c index e461d36201a4..5d1185e7f78d 100644 --- a/drivers/media/i2c/ad5820.c +++ b/drivers/media/i2c/ad5820.c @@ -22,6 +22,7 @@ * General Public License for more details. */ +#include #include #include #include @@ -380,6 +381,15 @@ static const struct of_device_id ad5820_of_table[] = { MODULE_DEVICE_TABLE(of, ad5820_of_table); #endif +#ifdef CONFIG_ACPI +static const struct acpi_device_id ad5820_acpi_ids[] = { + { "AD5820" }, + { } +}; + +MODULE_DEVICE_TABLE(acpi, ad5820_acpi_ids); +#endif + static SIMPLE_DEV_PM_OPS(ad5820_pm, ad5820_suspend, ad5820_resume); static struct i2c_driver ad5820_i2c_driver = { @@ -387,6 +397,7 @@ static struct i2c_driver ad5820_i2c_driver = { .name = AD5820_NAME, .pm = &ad5820_pm, .of_match_table = of_match_ptr(ad5820_of_table), + .acpi_match_table = ACPI_PTR(ad5820_acpi_ids), }, .probe = ad5820_probe, .remove = ad5820_remove, -- 2.18.0