diff options
author | Takashi Iwai <[email protected]> | 2024-08-09 09:39:21 +0200 |
---|---|---|
committer | Takashi Iwai <[email protected]> | 2024-08-09 09:39:48 +0200 |
commit | 528baf4f62dd57dee1a1076390b0921ad32b88a8 (patch) | |
tree | d6c2cd4188b362b9ba49db0004a01ebd02a901dc | |
parent | c46fc83e3f3c89f18962e43890de90b1c304747a (diff) |
ALSA: sparc: Fix a typo at dev_*() conversion
There was a stupid typo left that broke the build. Fix it.
Fixes: d41abde89483 ("ALSA: sparc: Use standard print API")
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r-- | sound/sparc/cs4231.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/sparc/cs4231.c b/sound/sparc/cs4231.c index 5f39b7847d31..a1339f9ef12a 100644 --- a/sound/sparc/cs4231.c +++ b/sound/sparc/cs4231.c @@ -2015,7 +2015,7 @@ static int snd_cs4231_ebus_create(struct snd_card *card, if (ebus_dma_register(&chip->p_dma.ebus_info)) { snd_cs4231_ebus_free(chip); - dev_dbg(chpi->card->dev, + dev_dbg(chip->card->dev, "cs4231-%d: Unable to register EBUS play DMA\n", dev); return -EBUSY; |