ASoC: codecs: max98090: simplify snd_soc_dai_driver
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Wed, 8 Feb 2023 16:04:10 +0000 (17:04 +0100)
committerMark Brown <broonie@kernel.org>
Thu, 9 Feb 2023 11:30:55 +0000 (11:30 +0000)
The max98090 has only one DAI, so snd_soc_dai_driver does not have to be
an array.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20230208160410.371609-2-krzysztof.kozlowski@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/max98090.c

index 06ed2a9..b419c49 100644 (file)
@@ -2356,8 +2356,7 @@ static const struct snd_soc_dai_ops max98090_dai_ops = {
        .no_capture_mute = 1,
 };
 
-static struct snd_soc_dai_driver max98090_dai[] = {
-{
+static struct snd_soc_dai_driver max98090_dai = {
        .name = "HiFi",
        .playback = {
                .stream_name = "HiFi Playback",
@@ -2374,7 +2373,6 @@ static struct snd_soc_dai_driver max98090_dai[] = {
                .formats = MAX98090_FORMATS,
        },
         .ops = &max98090_dai_ops,
-}
 };
 
 static int max98090_probe(struct snd_soc_component *component)
@@ -2594,8 +2592,8 @@ static int max98090_i2c_probe(struct i2c_client *i2c)
        }
 
        ret = devm_snd_soc_register_component(&i2c->dev,
-                       &soc_component_dev_max98090, max98090_dai,
-                       ARRAY_SIZE(max98090_dai));
+                                             &soc_component_dev_max98090,
+                                             &max98090_dai, 1);
 err_enable:
        return ret;
 }