diff options
| author | Tzung-Bi Shih <[email protected]> | 2020-06-05 11:49:30 +0800 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2020-06-15 16:44:03 +0100 |
| commit | 3aad07b87ac3fa1c67a75403f7f9c576da8df71d (patch) | |
| tree | d2b0b10146735f99bdfb193c48fddb6aaf2908b9 | |
| parent | 17212e7188783de75d2a1226c32d3fd7af96ad5d (diff) | |
ASoC: max98357a: add compatible string for MAX98360A
Maxim MAX98360A audio amplifier is functionally identical to MAX98357A.
Adds compatible string "maxim,max98360a" for driver reuse.
Signed-off-by: Tzung-Bi Shih <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | sound/soc/codecs/max98357a.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/max98357a.c b/sound/soc/codecs/max98357a.c index a8bd793a7867..4f431133d0bb 100644 --- a/sound/soc/codecs/max98357a.c +++ b/sound/soc/codecs/max98357a.c @@ -125,6 +125,7 @@ static int max98357a_platform_probe(struct platform_device *pdev) #ifdef CONFIG_OF static const struct of_device_id max98357a_device_id[] = { { .compatible = "maxim,max98357a" }, + { .compatible = "maxim,max98360a" }, {} }; MODULE_DEVICE_TABLE(of, max98357a_device_id); |