diff options
| author | Philipp Stanner <[email protected]> | 2025-04-23 07:53:31 +0000 |
|---|---|---|
| committer | Takashi Iwai <[email protected]> | 2025-04-24 07:21:34 +0000 |
| commit | 312ef977c6e8be0ee9636f325cfe2116ca176ec3 (patch) | |
| tree | 59bb398dd1717608c5013af8107693d730c759fa | |
| parent | ALSA: als: Use pure devres PCI (diff) | |
| download | kernel-312ef977c6e8be0ee9636f325cfe2116ca176ec3.tar.gz kernel-312ef977c6e8be0ee9636f325cfe2116ca176ec3.zip | |
ALSA: oxygen: Use pure devres PCI
pci_request_regions() is a hybrid function which becomes managed if
pcim_enable_device() was called before. This hybrid nature is deprecated
and should not be used anymore.
Replace pci_request_regions() with the always-managed function
pcim_request_all_regions().
Signed-off-by: Philipp Stanner <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
Link: https://patch.msgid.link/[email protected]
| -rw-r--r-- | sound/pci/oxygen/oxygen_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/oxygen/oxygen_lib.c b/sound/pci/oxygen/oxygen_lib.c index 9340d3c9ffd6..39b8ccf37cdd 100644 --- a/sound/pci/oxygen/oxygen_lib.c +++ b/sound/pci/oxygen/oxygen_lib.c @@ -609,7 +609,7 @@ static int __oxygen_pci_probe(struct pci_dev *pci, int index, char *id, if (err < 0) return err; - err = pci_request_regions(pci, DRIVER); + err = pcim_request_all_regions(pci, DRIVER); if (err < 0) { dev_err(card->dev, "cannot reserve PCI resources\n"); return err; |
