File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 10
10
11
11
#include <crypto/hash.h>
12
12
#include <crypto/sha.h>
13
+ #include <linux/acpi.h>
13
14
#include <linux/delay.h>
14
15
#include <linux/device.h>
15
16
#include <linux/io.h>
@@ -1047,10 +1048,17 @@ static const struct of_device_id cros_ec_codec_of_match[] = {
1047
1048
MODULE_DEVICE_TABLE (of , cros_ec_codec_of_match );
1048
1049
#endif
1049
1050
1051
+ static const struct acpi_device_id cros_ec_codec_acpi_id [] = {
1052
+ { "GOOG0013" , 0 },
1053
+ { }
1054
+ };
1055
+ MODULE_DEVICE_TABLE (acpi , cros_ec_codec_acpi_id );
1056
+
1050
1057
static struct platform_driver cros_ec_codec_platform_driver = {
1051
1058
.driver = {
1052
1059
.name = "cros-ec-codec" ,
1053
1060
.of_match_table = of_match_ptr (cros_ec_codec_of_match ),
1061
+ .acpi_match_table = ACPI_PTR (cros_ec_codec_acpi_id ),
1054
1062
},
1055
1063
.probe = cros_ec_codec_platform_probe ,
1056
1064
};
You can’t perform that action at this time.
0 commit comments