]> www.infradead.org Git - users/willy/linux.git/commitdiff
ALSA: cs4236: Use standard print API
authorTakashi Iwai <tiwai@suse.de>
Wed, 7 Aug 2024 13:34:13 +0000 (15:34 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 8 Aug 2024 05:47:24 +0000 (07:47 +0200)
Use the standard print API with dev_*() instead of the old house-baked
one.  It gives better information and allows dynamically control of
debug prints.

Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Link: https://patch.msgid.link/20240807133452.9424-24-tiwai@suse.de
sound/isa/cs423x/cs4236.c
sound/isa/cs423x/cs4236_lib.c

index 7226cbf2d7de4c5736cbd31858c727bd7b4e2917..ad20bb2649bd5523db06c0fa520be235e01f45de 100644 (file)
@@ -204,7 +204,7 @@ MODULE_DEVICE_TABLE(pnp_card, snd_cs423x_pnpids);
 static int snd_cs423x_pnp_init_wss(int dev, struct pnp_dev *pdev)
 {
        if (pnp_activate_dev(pdev) < 0) {
-               printk(KERN_ERR IDENT " WSS PnP configure failed for WSS (out of resources?)\n");
+               dev_err(&pdev->dev, IDENT " WSS PnP configure failed for WSS (out of resources?)\n");
                return -EBUSY;
        }
        port[dev] = pnp_port_start(pdev, 0);
@@ -214,10 +214,12 @@ static int snd_cs423x_pnp_init_wss(int dev, struct pnp_dev *pdev)
        irq[dev] = pnp_irq(pdev, 0);
        dma1[dev] = pnp_dma(pdev, 0);
        dma2[dev] = pnp_dma(pdev, 1) == 4 ? -1 : (int)pnp_dma(pdev, 1);
-       snd_printdd("isapnp WSS: wss port=0x%lx, fm port=0x%lx, sb port=0x%lx\n",
-                       port[dev], fm_port[dev], sb_port[dev]);
-       snd_printdd("isapnp WSS: irq=%i, dma1=%i, dma2=%i\n",
-                       irq[dev], dma1[dev], dma2[dev]);
+       dev_dbg(&pdev->dev,
+               "isapnp WSS: wss port=0x%lx, fm port=0x%lx, sb port=0x%lx\n",
+               port[dev], fm_port[dev], sb_port[dev]);
+       dev_dbg(&pdev->dev,
+               "isapnp WSS: irq=%i, dma1=%i, dma2=%i\n",
+               irq[dev], dma1[dev], dma2[dev]);
        return 0;
 }
 
@@ -225,11 +227,11 @@ static int snd_cs423x_pnp_init_wss(int dev, struct pnp_dev *pdev)
 static int snd_cs423x_pnp_init_ctrl(int dev, struct pnp_dev *pdev)
 {
        if (pnp_activate_dev(pdev) < 0) {
-               printk(KERN_ERR IDENT " CTRL PnP configure failed for WSS (out of resources?)\n");
+               dev_err(&pdev->dev, IDENT " CTRL PnP configure failed for WSS (out of resources?)\n");
                return -EBUSY;
        }
        cport[dev] = pnp_port_start(pdev, 0);
-       snd_printdd("isapnp CTRL: control port=0x%lx\n", cport[dev]);
+       dev_dbg(&pdev->dev, "isapnp CTRL: control port=0x%lx\n", cport[dev]);
        return 0;
 }
 
@@ -237,7 +239,7 @@ static int snd_cs423x_pnp_init_ctrl(int dev, struct pnp_dev *pdev)
 static int snd_cs423x_pnp_init_mpu(int dev, struct pnp_dev *pdev)
 {
        if (pnp_activate_dev(pdev) < 0) {
-               printk(KERN_ERR IDENT " MPU401 PnP configure failed for WSS (out of resources?)\n");
+               dev_err(&pdev->dev, IDENT " MPU401 PnP configure failed for WSS (out of resources?)\n");
                mpu_port[dev] = SNDRV_AUTO_PORT;
                mpu_irq[dev] = SNDRV_AUTO_IRQ;
        } else {
@@ -250,7 +252,7 @@ static int snd_cs423x_pnp_init_mpu(int dev, struct pnp_dev *pdev)
                        mpu_irq[dev] = -1;      /* disable interrupt */
                }
        }
-       snd_printdd("isapnp MPU: port=0x%lx, irq=%i\n", mpu_port[dev], mpu_irq[dev]);
+       dev_dbg(&pdev->dev, "isapnp MPU: port=0x%lx, irq=%i\n", mpu_port[dev], mpu_irq[dev]);
        return 0;
 }
 
@@ -333,7 +335,8 @@ static int snd_cs423x_probe(struct snd_card *card, int dev)
        if (sb_port[dev] > 0 && sb_port[dev] != SNDRV_AUTO_PORT) {
                if (!devm_request_region(card->dev, sb_port[dev], 16,
                                         IDENT " SB")) {
-                       printk(KERN_ERR IDENT ": unable to register SB port at 0x%lx\n", sb_port[dev]);
+                       dev_err(card->dev, IDENT ": unable to register SB port at 0x%lx\n",
+                               sb_port[dev]);
                        return -EBUSY;
                }
        }
@@ -384,7 +387,7 @@ static int snd_cs423x_probe(struct snd_card *card, int dev)
                if (snd_opl3_create(card,
                                    fm_port[dev], fm_port[dev] + 2,
                                    OPL3_HW_OPL3_CS, 0, &opl3) < 0) {
-                       printk(KERN_WARNING IDENT ": OPL3 not detected\n");
+                       dev_warn(card->dev, IDENT ": OPL3 not detected\n");
                } else {
                        err = snd_opl3_hwdep_new(opl3, 0, 1, NULL);
                        if (err < 0)
@@ -398,7 +401,7 @@ static int snd_cs423x_probe(struct snd_card *card, int dev)
                if (snd_mpu401_uart_new(card, 0, MPU401_HW_CS4232,
                                        mpu_port[dev], 0,
                                        mpu_irq[dev], NULL) < 0)
-                       printk(KERN_WARNING IDENT ": MPU401 not detected\n");
+                       dev_warn(card->dev, IDENT ": MPU401 not detected\n");
        }
 
        return snd_card_register(card);
@@ -521,7 +524,7 @@ static int snd_cs423x_pnpbios_detect(struct pnp_dev *pdev,
                return err;
        err = snd_card_cs423x_pnp(dev, card->private_data, pdev, cdev);
        if (err < 0) {
-               printk(KERN_ERR "PnP BIOS detection failed for " IDENT "\n");
+               dev_err(card->dev, "PnP BIOS detection failed for " IDENT "\n");
                return err;
        }
        err = snd_cs423x_probe(card, dev);
@@ -573,7 +576,7 @@ static int snd_cs423x_pnpc_detect(struct pnp_card_link *pcard,
                return res;
        res = snd_card_cs423x_pnpc(dev, card->private_data, pcard, pid);
        if (res < 0) {
-               printk(KERN_ERR "isapnp detection failed and probing for " IDENT
+               dev_err(card->dev, "isapnp detection failed and probing for " IDENT
                       " is not supported\n");
                return res;
        }
index 35f25911adcf0acbef625805d8af53ffe82ea9c1..1a03cff6915b85d5ac83e232e2e3bcbe8bb797a7 100644 (file)
@@ -279,8 +279,8 @@ int snd_cs4236_create(struct snd_card *card,
                return err;
 
        if ((chip->hardware & WSS_HW_CS4236B_MASK) == 0) {
-               snd_printd("chip is not CS4236+, hardware=0x%x\n",
-                          chip->hardware);
+               dev_dbg(card->dev, "chip is not CS4236+, hardware=0x%x\n",
+                       chip->hardware);
                *rchip = chip;
                return 0;
        }
@@ -288,25 +288,25 @@ int snd_cs4236_create(struct snd_card *card,
        {
                int idx;
                for (idx = 0; idx < 8; idx++)
-                       snd_printk(KERN_DEBUG "CD%i = 0x%x\n",
-                                  idx, inb(chip->cport + idx));
+                       dev_dbg(card->dev, "CD%i = 0x%x\n",
+                               idx, inb(chip->cport + idx));
                for (idx = 0; idx < 9; idx++)
-                       snd_printk(KERN_DEBUG "C%i = 0x%x\n",
-                                  idx, snd_cs4236_ctrl_in(chip, idx));
+                       dev_dbg(card->dev, "C%i = 0x%x\n",
+                               idx, snd_cs4236_ctrl_in(chip, idx));
        }
 #endif
        if (cport < 0x100 || cport == SNDRV_AUTO_PORT) {
-               snd_printk(KERN_ERR "please, specify control port "
-                          "for CS4236+ chips\n");
+               dev_err(card->dev, "please, specify control port for CS4236+ chips\n");
                return -ENODEV;
        }
        ver1 = snd_cs4236_ctrl_in(chip, 1);
        ver2 = snd_cs4236_ext_in(chip, CS4236_VERSION);
-       snd_printdd("CS4236: [0x%lx] C1 (version) = 0x%x, ext = 0x%x\n",
-                       cport, ver1, ver2);
+       dev_dbg(card->dev, "CS4236: [0x%lx] C1 (version) = 0x%x, ext = 0x%x\n",
+               cport, ver1, ver2);
        if (ver1 != ver2) {
-               snd_printk(KERN_ERR "CS4236+ chip detected, but "
-                          "control port 0x%lx is not valid\n", cport);
+               dev_err(card->dev,
+                       "CS4236+ chip detected, but control port 0x%lx is not valid\n",
+                       cport);
                return -ENODEV;
        }
        snd_cs4236_ctrl_out(chip, 0, 0x00);
@@ -934,14 +934,14 @@ static int snd_cs4236_get_iec958_switch(struct snd_kcontrol *kcontrol, struct sn
        spin_lock_irqsave(&chip->reg_lock, flags);
        ucontrol->value.integer.value[0] = chip->image[CS4231_ALT_FEATURE_1] & 0x02 ? 1 : 0;
 #if 0
-       printk(KERN_DEBUG "get valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, "
-              "C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n",
-                       snd_wss_in(chip, CS4231_ALT_FEATURE_1),
-                       snd_cs4236_ctrl_in(chip, 3),
-                       snd_cs4236_ctrl_in(chip, 4),
-                       snd_cs4236_ctrl_in(chip, 5),
-                       snd_cs4236_ctrl_in(chip, 6),
-                       snd_cs4236_ctrl_in(chip, 8));
+       dev_dbg(chip->card->dev,
+               "get valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n",
+               snd_wss_in(chip, CS4231_ALT_FEATURE_1),
+               snd_cs4236_ctrl_in(chip, 3),
+               snd_cs4236_ctrl_in(chip, 4),
+               snd_cs4236_ctrl_in(chip, 5),
+               snd_cs4236_ctrl_in(chip, 6),
+               snd_cs4236_ctrl_in(chip, 8));
 #endif
        spin_unlock_irqrestore(&chip->reg_lock, flags);
        return 0;
@@ -972,14 +972,14 @@ static int snd_cs4236_put_iec958_switch(struct snd_kcontrol *kcontrol, struct sn
        mutex_unlock(&chip->mce_mutex);
 
 #if 0
-       printk(KERN_DEBUG "set valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, "
-              "C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n",
-                       snd_wss_in(chip, CS4231_ALT_FEATURE_1),
-                       snd_cs4236_ctrl_in(chip, 3),
-                       snd_cs4236_ctrl_in(chip, 4),
-                       snd_cs4236_ctrl_in(chip, 5),
-                       snd_cs4236_ctrl_in(chip, 6),
-                       snd_cs4236_ctrl_in(chip, 8));
+       dev_dbg(chip->card->dev,
+               "set valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n",
+               snd_wss_in(chip, CS4231_ALT_FEATURE_1),
+               snd_cs4236_ctrl_in(chip, 3),
+               snd_cs4236_ctrl_in(chip, 4),
+               snd_cs4236_ctrl_in(chip, 5),
+               snd_cs4236_ctrl_in(chip, 6),
+               snd_cs4236_ctrl_in(chip, 8));
 #endif
        return change;
 }