projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86d1032
)
shpc: fix error propaagation
author
Gonglei
<arei.gonglei@huawei.com>
Sat, 15 Nov 2014 10:06:47 +0000
(18:06 +0800)
committer
Paolo Bonzini
<pbonzini@redhat.com>
Mon, 17 Nov 2014 10:49:19 +0000
(11:49 +0100)
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
hw/pci/shpc.c
patch
|
blob
|
history
diff --git
a/hw/pci/shpc.c
b/hw/pci/shpc.c
index 65b2f5103fa0d6c1f81c554d98fdac1860247850..9a390609332170f1910f91d73b1091133705c9a8 100644
(file)
--- a/
hw/pci/shpc.c
+++ b/
hw/pci/shpc.c
@@
-559,8
+559,9
@@
void shpc_device_hot_unplug_request_cb(HotplugHandler *hotplug_dev,
uint8_t led;
int slot;
- shpc_device_hotplug_common(PCI_DEVICE(dev), &slot, shpc,
errp
);
+ shpc_device_hotplug_common(PCI_DEVICE(dev), &slot, shpc,
&local_err
);
if (local_err) {
+ error_propagate(errp, local_err);
return;
}