Commit f4cb4100 authored by Cao jin's avatar Cao jin Committed by Alex Williamson

vfio/pci: Drop unnecessary pcibios_err_to_errno()

As of commit d97ffe23 ("PCI: Fix return value from
pci_user_{read,write}_config_*()") it's unnecessary to call
pcibios_err_to_errno() to fixup the return value from these functions.

pcibios_err_to_errno() already does simple passthrough of -errno values,
therefore no functional change is expected.

[aw: changelog]
Signed-off-by: default avatarCao jin <caoj.fnst@cn.fujitsu.com>
Signed-off-by: default avatarAlex Williamson <alex.williamson@redhat.com>
parent 5188287a
...@@ -152,7 +152,7 @@ static int vfio_user_config_read(struct pci_dev *pdev, int offset, ...@@ -152,7 +152,7 @@ static int vfio_user_config_read(struct pci_dev *pdev, int offset,
*val = cpu_to_le32(tmp_val); *val = cpu_to_le32(tmp_val);
return pcibios_err_to_errno(ret); return ret;
} }
static int vfio_user_config_write(struct pci_dev *pdev, int offset, static int vfio_user_config_write(struct pci_dev *pdev, int offset,
...@@ -173,7 +173,7 @@ static int vfio_user_config_write(struct pci_dev *pdev, int offset, ...@@ -173,7 +173,7 @@ static int vfio_user_config_write(struct pci_dev *pdev, int offset,
break; break;
} }
return pcibios_err_to_errno(ret); return ret;
} }
static int vfio_default_config_read(struct vfio_pci_device *vdev, int pos, static int vfio_default_config_read(struct vfio_pci_device *vdev, int pos,
...@@ -257,7 +257,7 @@ static int vfio_direct_config_read(struct vfio_pci_device *vdev, int pos, ...@@ -257,7 +257,7 @@ static int vfio_direct_config_read(struct vfio_pci_device *vdev, int pos,
ret = vfio_user_config_read(vdev->pdev, pos, val, count); ret = vfio_user_config_read(vdev->pdev, pos, val, count);
if (ret) if (ret)
return pcibios_err_to_errno(ret); return ret;
if (pos >= PCI_CFG_SPACE_SIZE) { /* Extended cap header mangling */ if (pos >= PCI_CFG_SPACE_SIZE) { /* Extended cap header mangling */
if (offset < 4) if (offset < 4)
...@@ -295,7 +295,7 @@ static int vfio_raw_config_read(struct vfio_pci_device *vdev, int pos, ...@@ -295,7 +295,7 @@ static int vfio_raw_config_read(struct vfio_pci_device *vdev, int pos,
ret = vfio_user_config_read(vdev->pdev, pos, val, count); ret = vfio_user_config_read(vdev->pdev, pos, val, count);
if (ret) if (ret)
return pcibios_err_to_errno(ret); return ret;
return count; return count;
} }
...@@ -1089,7 +1089,7 @@ static int vfio_msi_config_write(struct vfio_pci_device *vdev, int pos, ...@@ -1089,7 +1089,7 @@ static int vfio_msi_config_write(struct vfio_pci_device *vdev, int pos,
start + PCI_MSI_FLAGS, start + PCI_MSI_FLAGS,
flags); flags);
if (ret) if (ret)
return pcibios_err_to_errno(ret); return ret;
} }
return count; return count;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment