diff mbox

ASoC: ssm4567: Added ACPI entry for SSM4567 codec

Message ID 1437678714-5911-1-git-send-email-harshapriya.n@intel.com (mailing list archive)
State Accepted
Commit eeffd4b442eb2aa25257d8c6631b17cba685ccac
Headers show

Commit Message

Harsha Priya July 23, 2015, 7:11 p.m. UTC
Added INT343B ACPI ID for the SSM4567 codec

Signed-off-by: Harsha Priya <harshapriya.n@intel.com>
Signed-off-by: M Naveen <naveen.m@intel.com>
Signed-off-by: M R Sathya Prakash <sathya.prakash.m.r@intel.com>
---
 sound/soc/codecs/ssm4567.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

Comments

Anatol Pomazau July 23, 2015, 10:13 p.m. UTC | #1
Hi

On Thu, Jul 23, 2015 at 12:11 PM, Harsha Priya <harshapriya.n@intel.com> wrote:
> Added INT343B ACPI ID for the SSM4567 codec
>
> Signed-off-by: Harsha Priya <harshapriya.n@intel.com>
> Signed-off-by: M Naveen <naveen.m@intel.com>
> Signed-off-by: M R Sathya Prakash <sathya.prakash.m.r@intel.com>

Acked-by: Anatol Pomozov <anatol.pomozov@gmail.com>

> ---
>  sound/soc/codecs/ssm4567.c | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>
> diff --git a/sound/soc/codecs/ssm4567.c b/sound/soc/codecs/ssm4567.c
> index 938d2cb..af536ae 100644
> --- a/sound/soc/codecs/ssm4567.c
> +++ b/sound/soc/codecs/ssm4567.c
> @@ -10,6 +10,7 @@
>   * Licensed under the GPL-2.
>   */
>
> +#include <linux/acpi.h>
>  #include <linux/module.h>
>  #include <linux/init.h>
>  #include <linux/i2c.h>
> @@ -450,10 +451,21 @@ static const struct i2c_device_id ssm4567_i2c_ids[] = {
>  };
>  MODULE_DEVICE_TABLE(i2c, ssm4567_i2c_ids);
>
> +#ifdef CONFIG_ACPI
> +
> +static const struct acpi_device_id ssm4567_acpi_match[] = {
> +       { "INT343B", 0 },
> +       {},
> +};
> +MODULE_DEVICE_TABLE(acpi, ssm4567_acpi_match);
> +
> +#endif
> +
>  static struct i2c_driver ssm4567_driver = {
>         .driver = {
>                 .name = "ssm4567",
>                 .owner = THIS_MODULE,
> +               .acpi_match_table = ACPI_PTR(ssm4567_acpi_match),
>         },
>         .probe = ssm4567_i2c_probe,
>         .remove = ssm4567_i2c_remove,
> --
> 1.9.1
>
Lars-Peter Clausen July 24, 2015, 8:59 a.m. UTC | #2
On 07/24/2015 12:13 AM, Anatol Pomazau wrote:
> Hi
>
> On Thu, Jul 23, 2015 at 12:11 PM, Harsha Priya <harshapriya.n@intel.com> wrote:
>> Added INT343B ACPI ID for the SSM4567 codec
>>
>> Signed-off-by: Harsha Priya <harshapriya.n@intel.com>
>> Signed-off-by: M Naveen <naveen.m@intel.com>
>> Signed-off-by: M R Sathya Prakash <sathya.prakash.m.r@intel.com>
>
> Acked-by: Anatol Pomozov <anatol.pomozov@gmail.com>

Acked-by: Lars-Peter Clausen <lars@metafoo.de>
diff mbox

Patch

diff --git a/sound/soc/codecs/ssm4567.c b/sound/soc/codecs/ssm4567.c
index 938d2cb..af536ae 100644
--- a/sound/soc/codecs/ssm4567.c
+++ b/sound/soc/codecs/ssm4567.c
@@ -10,6 +10,7 @@ 
  * Licensed under the GPL-2.
  */
 
+#include <linux/acpi.h>
 #include <linux/module.h>
 #include <linux/init.h>
 #include <linux/i2c.h>
@@ -450,10 +451,21 @@  static const struct i2c_device_id ssm4567_i2c_ids[] = {
 };
 MODULE_DEVICE_TABLE(i2c, ssm4567_i2c_ids);
 
+#ifdef CONFIG_ACPI
+
+static const struct acpi_device_id ssm4567_acpi_match[] = {
+	{ "INT343B", 0 },
+	{},
+};
+MODULE_DEVICE_TABLE(acpi, ssm4567_acpi_match);
+
+#endif
+
 static struct i2c_driver ssm4567_driver = {
 	.driver = {
 		.name = "ssm4567",
 		.owner = THIS_MODULE,
+		.acpi_match_table = ACPI_PTR(ssm4567_acpi_match),
 	},
 	.probe = ssm4567_i2c_probe,
 	.remove = ssm4567_i2c_remove,