ANDROID: goldfish: Enable ACPI-based enumeration for goldfish audio
authorYu Ning <yu.ning@intel.com>
Tue, 31 Mar 2015 06:41:48 +0000 (14:41 +0800)
committerJin Qian <jinqian@google.com>
Thu, 17 Nov 2016 20:26:50 +0000 (12:26 -0800)
Follow the same way in which ACPI was enabled for goldfish battery. See
commit d3be10e for details.

Change-Id: I6ffe38ebc80fb8af8322152370b9d1fd227eaf50
Signed-off-by: Yu Ning <yu.ning@intel.com>
drivers/staging/goldfish/goldfish_audio.c

index 4191054b878e8286d7a757f89773a963e2f13da0..83bbe459b93a1274c676f04079f5f7b20ae39668 100644 (file)
@@ -28,6 +28,7 @@
 #include <linux/uaccess.h>
 #include <linux/slab.h>
 #include <linux/goldfish.h>
+#include <linux/acpi.h>
 
 MODULE_AUTHOR("Google, Inc.");
 MODULE_DESCRIPTION("Android QEMU Audio Driver");
@@ -351,12 +352,19 @@ static const struct of_device_id goldfish_audio_of_match[] = {
 };
 MODULE_DEVICE_TABLE(of, goldfish_audio_of_match);
 
+static const struct acpi_device_id goldfish_audio_acpi_match[] = {
+       { "GFSH0005", 0 },
+       { },
+};
+MODULE_DEVICE_TABLE(acpi, goldfish_audio_acpi_match);
+
 static struct platform_driver goldfish_audio_driver = {
        .probe          = goldfish_audio_probe,
        .remove         = goldfish_audio_remove,
        .driver = {
                .name = "goldfish_audio",
                .of_match_table = goldfish_audio_of_match,
+               .acpi_match_table = ACPI_PTR(goldfish_audio_acpi_match),
        }
 };