ALSA: oxygen: Use standard printk helpers
authorTakashi Iwai <tiwai@suse.de>
Tue, 25 Feb 2014 17:00:26 +0000 (18:00 +0100)
committerTakashi Iwai <tiwai@suse.de>
Wed, 26 Feb 2014 15:45:30 +0000 (16:45 +0100)
Convert with dev_err() and co from snd_printk(), etc.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/oxygen/oxygen_io.c
sound/pci/oxygen/oxygen_lib.c
sound/pci/oxygen/xonar_hdmi.c
sound/pci/oxygen/xonar_lib.c

index 3274907..4b8a32c 100644 (file)
@@ -147,7 +147,7 @@ void oxygen_write_ac97(struct oxygen *chip, unsigned int codec,
                        return;
                }
        }
                        return;
                }
        }
-       snd_printk(KERN_ERR "AC'97 write timeout\n");
+       dev_err(chip->card->dev, "AC'97 write timeout\n");
 }
 EXPORT_SYMBOL(oxygen_write_ac97);
 
 }
 EXPORT_SYMBOL(oxygen_write_ac97);
 
@@ -179,7 +179,7 @@ u16 oxygen_read_ac97(struct oxygen *chip, unsigned int codec,
                        reg ^= 0xffff;
                }
        }
                        reg ^= 0xffff;
                }
        }
-       snd_printk(KERN_ERR "AC'97 read timeout on codec %u\n", codec);
+       dev_err(chip->card->dev, "AC'97 read timeout on codec %u\n", codec);
        return 0;
 }
 EXPORT_SYMBOL(oxygen_read_ac97);
        return 0;
 }
 EXPORT_SYMBOL(oxygen_read_ac97);
@@ -208,7 +208,7 @@ static int oxygen_wait_spi(struct oxygen *chip)
                                                OXYGEN_SPI_BUSY) == 0)
                        return 0;
        }
                                                OXYGEN_SPI_BUSY) == 0)
                        return 0;
        }
-       snd_printk(KERN_ERR "oxygen: SPI wait timeout\n");
+       dev_err(chip->card->dev, "oxygen: SPI wait timeout\n");
        return -EIO;
 }
 
        return -EIO;
 }
 
@@ -288,5 +288,5 @@ void oxygen_write_eeprom(struct oxygen *chip, unsigned int index, u16 value)
                      & OXYGEN_EEPROM_BUSY))
                        return;
        }
                      & OXYGEN_EEPROM_BUSY))
                        return;
        }
-       snd_printk(KERN_ERR "EEPROM write timeout\n");
+       dev_err(chip->card->dev, "EEPROM write timeout\n");
 }
 }
index efa610c..b67e306 100644 (file)
@@ -313,7 +313,7 @@ static void oxygen_restore_eeprom(struct oxygen *chip,
                oxygen_clear_bits8(chip, OXYGEN_MISC,
                                   OXYGEN_MISC_WRITE_PCI_SUBID);
 
                oxygen_clear_bits8(chip, OXYGEN_MISC,
                                   OXYGEN_MISC_WRITE_PCI_SUBID);
 
-               snd_printk(KERN_INFO "EEPROM ID restored\n");
+               dev_info(chip->card->dev, "EEPROM ID restored\n");
        }
 }
 
        }
 }
 
@@ -617,13 +617,13 @@ int oxygen_pci_probe(struct pci_dev *pci, int index, char *id,
 
        err = pci_request_regions(pci, DRIVER);
        if (err < 0) {
 
        err = pci_request_regions(pci, DRIVER);
        if (err < 0) {
-               snd_printk(KERN_ERR "cannot reserve PCI resources\n");
+               dev_err(card->dev, "cannot reserve PCI resources\n");
                goto err_pci_enable;
        }
 
        if (!(pci_resource_flags(pci, 0) & IORESOURCE_IO) ||
            pci_resource_len(pci, 0) < OXYGEN_IO_SIZE) {
                goto err_pci_enable;
        }
 
        if (!(pci_resource_flags(pci, 0) & IORESOURCE_IO) ||
            pci_resource_len(pci, 0) < OXYGEN_IO_SIZE) {
-               snd_printk(KERN_ERR "invalid PCI I/O range\n");
+               dev_err(card->dev, "invalid PCI I/O range\n");
                err = -ENXIO;
                goto err_pci_regions;
        }
                err = -ENXIO;
                goto err_pci_regions;
        }
@@ -658,7 +658,7 @@ int oxygen_pci_probe(struct pci_dev *pci, int index, char *id,
        err = request_irq(pci->irq, oxygen_interrupt, IRQF_SHARED,
                          KBUILD_MODNAME, chip);
        if (err < 0) {
        err = request_irq(pci->irq, oxygen_interrupt, IRQF_SHARED,
                          KBUILD_MODNAME, chip);
        if (err < 0) {
-               snd_printk(KERN_ERR "cannot grab interrupt %d\n", pci->irq);
+               dev_err(card->dev, "cannot grab interrupt %d\n", pci->irq);
                goto err_card;
        }
        chip->irq = pci->irq;
                goto err_card;
        }
        chip->irq = pci->irq;
@@ -796,7 +796,7 @@ static int oxygen_pci_resume(struct device *dev)
        pci_set_power_state(pci, PCI_D0);
        pci_restore_state(pci);
        if (pci_enable_device(pci) < 0) {
        pci_set_power_state(pci, PCI_D0);
        pci_restore_state(pci);
        if (pci_enable_device(pci) < 0) {
-               snd_printk(KERN_ERR "cannot reenable device");
+               dev_err(dev, "cannot reenable device");
                snd_card_disconnect(card);
                return -EIO;
        }
                snd_card_disconnect(card);
                return -EIO;
        }
index 136dac6..91d92bc 100644 (file)
@@ -120,7 +120,7 @@ void xonar_hdmi_uart_input(struct oxygen *chip)
        if (chip->uart_input_count >= 2 &&
            chip->uart_input[chip->uart_input_count - 2] == 'O' &&
            chip->uart_input[chip->uart_input_count - 1] == 'K') {
        if (chip->uart_input_count >= 2 &&
            chip->uart_input[chip->uart_input_count - 2] == 'O' &&
            chip->uart_input[chip->uart_input_count - 1] == 'K') {
-               printk(KERN_DEBUG "message from HDMI chip received:\n");
+               dev_dbg(chip->card->dev, "message from HDMI chip received:\n");
                print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
                                     chip->uart_input, chip->uart_input_count);
                chip->uart_input_count = 0;
                print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
                                     chip->uart_input, chip->uart_input_count);
                chip->uart_input_count = 0;
index 0ebe7f5..706b1a4 100644 (file)
@@ -56,9 +56,9 @@ static void xonar_ext_power_gpio_changed(struct oxygen *chip)
        if (has_power != data->has_power) {
                data->has_power = has_power;
                if (has_power) {
        if (has_power != data->has_power) {
                data->has_power = has_power;
                if (has_power) {
-                       snd_printk(KERN_NOTICE "power restored\n");
+                       dev_notice(chip->card->dev, "power restored\n");
                } else {
                } else {
-                       snd_printk(KERN_CRIT
+                       dev_crit(chip->card->dev,
                                   "Hey! Don't unplug the power cable!\n");
                        /* TODO: stop PCMs */
                }
                                   "Hey! Don't unplug the power cable!\n");
                        /* TODO: stop PCMs */
                }