projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e815ee
)
pcie: fix improper use of negative value
author
Gonglei
<arei.gonglei@huawei.com>
Thu, 20 Nov 2014 08:55:54 +0000
(16:55 +0800)
committer
Michael S. Tsirkin
<mst@redhat.com>
Mon, 24 Nov 2014 18:57:11 +0000
(20:57 +0200)
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/pci/pcie.c
patch
|
blob
|
history
diff --git
a/hw/pci/pcie.c
b/hw/pci/pcie.c
index fbba589aa1a14837b4499ba0f9694eada2335ad2..1abbbb192e73c86652f65a4f07186c217864ae9d 100644
(file)
--- a/
hw/pci/pcie.c
+++ b/
hw/pci/pcie.c
@@
-229,7
+229,7
@@
static void pcie_cap_slot_hotplug_common(PCIDevice *hotplug_dev,
/* the slot is electromechanically locked.
* This error is propagated up to qdev and then to HMP/QMP.
*/
- error_setg_errno(errp,
-
EBUSY, "slot is electromechanically locked");
+ error_setg_errno(errp, EBUSY, "slot is electromechanically locked");
}
}