aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/devicetree/bindings/sound/max98090.txt2
-rw-r--r--sound/soc/codecs/max98090.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/sound/max98090.txt b/Documentation/devicetree/bindings/sound/max98090.txt
index a5e63fa47dc5..c454e67f54bb 100644
--- a/Documentation/devicetree/bindings/sound/max98090.txt
+++ b/Documentation/devicetree/bindings/sound/max98090.txt
@@ -4,7 +4,7 @@ This device supports I2C only.
4 4
5Required properties: 5Required properties:
6 6
7- compatible : "maxim,max98090". 7- compatible : "maxim,max98090" or "maxim,max98091".
8 8
9- reg : The I2C address of the device. 9- reg : The I2C address of the device.
10 10
diff --git a/sound/soc/codecs/max98090.c b/sound/soc/codecs/max98090.c
index 3aec3ae78fe0..c00b36872dfe 100644
--- a/sound/soc/codecs/max98090.c
+++ b/sound/soc/codecs/max98090.c
@@ -2447,12 +2447,14 @@ static const struct dev_pm_ops max98090_pm = {
2447 2447
2448static const struct i2c_device_id max98090_i2c_id[] = { 2448static const struct i2c_device_id max98090_i2c_id[] = {
2449 { "max98090", MAX98090 }, 2449 { "max98090", MAX98090 },
2450 { "max98091", MAX98091 },
2450 { } 2451 { }
2451}; 2452};
2452MODULE_DEVICE_TABLE(i2c, max98090_i2c_id); 2453MODULE_DEVICE_TABLE(i2c, max98090_i2c_id);
2453 2454
2454static const struct of_device_id max98090_of_match[] = { 2455static const struct of_device_id max98090_of_match[] = {
2455 { .compatible = "maxim,max98090", }, 2456 { .compatible = "maxim,max98090", },
2457 { .compatible = "maxim,max98091", },
2456 { } 2458 { }
2457}; 2459};
2458MODULE_DEVICE_TABLE(of, max98090_of_match); 2460MODULE_DEVICE_TABLE(of, max98090_of_match);