diff options
author | Praveen Kalamegham <praveen@nextio.com> | 2010-05-20 15:32:22 -0500 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-07-30 09:29:15 -0700 |
commit | 01b666df487b80c956cef3ce3253776ddeebd41e (patch) | |
tree | e3714b5a3bf6f4b6bc3a049c4f7e4a045dcd1f30 /drivers/pci/hotplug | |
parent | 41cd766b065970ff6f6c89dd1cf55fa706c84a3d (diff) | |
download | op-kernel-dev-01b666df487b80c956cef3ce3253776ddeebd41e.zip op-kernel-dev-01b666df487b80c956cef3ce3253776ddeebd41e.tar.gz |
PCI hotplug: pciehp: Fixed return value sign for pciehp_unconfigure_device
pciehp_unconfigure_device() should return -EINVAL, not EINVAL.
Signed-off-by: Praveen Kalamegham <praveen@nextio.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/hotplug')
-rw-r--r-- | drivers/pci/hotplug/pciehp_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/pciehp_pci.c b/drivers/pci/hotplug/pciehp_pci.c index 2fce726..a4031df 100644 --- a/drivers/pci/hotplug/pciehp_pci.c +++ b/drivers/pci/hotplug/pciehp_pci.c @@ -137,7 +137,7 @@ int pciehp_unconfigure_device(struct slot *p_slot) "Cannot remove display device %s\n", pci_name(temp)); pci_dev_put(temp); - rc = EINVAL; + rc = -EINVAL; break; } } |