* [PATCH] PCI: Map PCI bios specific error to generic errno
@ 2022-09-01 15:23 Jesper Nilsson
0 siblings, 0 replies; only message in thread
From: Jesper Nilsson @ 2022-09-01 15:23 UTC (permalink / raw)
To: Bjorn Helgaas; +Cc: Jesper Nilsson, linux-pci, linux-kernel
pci_read_config_byte() may return a PCI bios specific error value
(in my case PCIBIOS_DEVICE_NOT_FOUND 0x86) which is nonsensical
to return to the caller of of_irq_parse_pci() which expects
a negative errno if something goes wrong.
Use the appropriate mapping function before passing the error on.
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
---
drivers/pci/of.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/pci/of.c b/drivers/pci/of.c
index 196834ed44fe..130bcfe61e04 100644
--- a/drivers/pci/of.c
+++ b/drivers/pci/of.c
@@ -440,8 +440,10 @@ static int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *
* for PCI. If you do different, then don't use that routine.
*/
rc = pci_read_config_byte(pdev, PCI_INTERRUPT_PIN, &pin);
- if (rc != 0)
+ if (rc != 0) {
+ rc = pcibios_err_to_errno(rc);
goto err;
+ }
/* No pin, exit with no error message. */
if (pin == 0)
return -ENODEV;
--
2.36.0
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-09-01 15:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-01 15:23 [PATCH] PCI: Map PCI bios specific error to generic errno Jesper Nilsson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®