Skip to content

Commit c46fc83

Browse files
committed
ALSA: vxpocket: Fix a typo at conversion to dev_*()
There was a typo in the previous conversion to dev_*() that caused a build error. Fix it. Fixes: 2acbb5e ("ALSA: vxpocket: 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]>
1 parent e95b9f7 commit c46fc83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sound/pcmcia/vx/vxpocket.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ static int vxpocket_probe(struct pcmcia_device *p_dev)
268268
err = snd_card_new(&p_dev->dev, index[i], id[i], THIS_MODULE,
269269
0, &card);
270270
if (err < 0) {
271-
dev_err(&pdev->dev, "vxpocket: cannot create a card instance\n");
271+
dev_err(&p_dev->dev, "vxpocket: cannot create a card instance\n");
272272
return err;
273273
}
274274

0 commit comments

Comments
 (0)