Skip to content

Commit

Permalink
ASoC: Intel: skl_hda_dsp_generic: fix clang/gcc build error
Browse files Browse the repository at this point in the history
Use semicolon to complete an expression instead of comma for following
build error.

sound/soc/intel/boards/skl_hda_dsp_generic.c:108:2: error: expected expression
        dev_dbg(&pdev->dev, "board_quirk = %lx\n", board_quirk);

Fixes: 33e59e5 ("ASoC: Intel: skl_hda_dsp_generic: Allocate snd_soc_card dynamically")
Signed-off-by: Brent Lu <[email protected]>
  • Loading branch information
brentlu committed Aug 23, 2024
1 parent 82543d8 commit 1a68ef5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions sound/soc/intel/boards/skl_hda_dsp_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,14 +217,14 @@ static int skl_hda_audio_probe(struct platform_device *pdev)
return -ENOMEM;

card = &ctx->card;
card->name = "hda-dsp",
card->owner = THIS_MODULE,
card->dai_link = skl_hda_be_dai_links,
card->dapm_widgets = skl_hda_widgets,
card->dapm_routes = skl_hda_map,
card->add_dai_link = skl_hda_add_dai_link,
card->fully_routed = true,
card->late_probe = skl_hda_card_late_probe,
card->name = "hda-dsp";
card->owner = THIS_MODULE;
card->dai_link = skl_hda_be_dai_links;
card->dapm_widgets = skl_hda_widgets;
card->dapm_routes = skl_hda_map;
card->add_dai_link = skl_hda_add_dai_link;
card->fully_routed = true;
card->late_probe = skl_hda_card_late_probe;

snd_soc_card_set_drvdata(card, ctx);

Expand Down

0 comments on commit 1a68ef5

Please sign in to comment.