ALSA: bt87x: Replace deprecated PCI functions
authorPhilipp Stanner <phasta@kernel.org>
Fri, 4 Apr 2025 12:19:06 +0000 (14:19 +0200)
committerTakashi Iwai <tiwai@suse.de>
Mon, 7 Apr 2025 07:19:57 +0000 (09:19 +0200)
pcim_iomap_table() and pcim_iomap_regions() have been deprecated.
Replace them with pcim_iomap_region().

Signed-off-by: Philipp Stanner <phasta@kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Link: https://patch.msgid.link/20250404121911.85277-7-phasta@kernel.org
sound/pci/bt87x.c

index 621985bfee5d7de0244550ea7c4585bba554b4d3..91492dd2b38a1dd760294d9081722d080c935217 100644 (file)
@@ -696,10 +696,9 @@ static int snd_bt87x_create(struct snd_card *card,
        chip->irq = -1;
        spin_lock_init(&chip->reg_lock);
 
-       err = pcim_iomap_regions(pci, 1 << 0, "Bt87x audio");
-       if (err < 0)
-               return err;
-       chip->mmio = pcim_iomap_table(pci)[0];
+       chip->mmio = pcim_iomap_region(pci, 0, "Bt87x audio");
+       if (IS_ERR(chip->mmio))
+               return PTR_ERR(chip->mmio);
 
        chip->reg_control = CTL_A_PWRDN | CTL_DA_ES2 |
                            CTL_PKTP_16 | (15 << CTL_DA_SDR_SHIFT);