summaryrefslogtreecommitdiffstats
path: root/hw
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-08-12 08:06:02 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2011-08-12 08:06:02 -0500
commit9b024b5f965a3c11aa65435df5b9e8f1cc24d3fa (patch)
tree952d44ca7f7c2f2333fbcc005d8f49f6dbba988f /hw
parenteecaecedec1eb6a47be370a6023bc220a3d30c85 (diff)
parent85d59fef9defc78790c8b6cee833d4a77c22a490 (diff)
downloadhqemu-9b024b5f965a3c11aa65435df5b9e8f1cc24d3fa.zip
hqemu-9b024b5f965a3c11aa65435df5b9e8f1cc24d3fa.tar.gz
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
Diffstat (limited to 'hw')
-rw-r--r--hw/qdev.c7
-rw-r--r--hw/scsi-bus.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/hw/qdev.c b/hw/qdev.c
index 6819537..d8114c6 100644
--- a/hw/qdev.c
+++ b/hw/qdev.c
@@ -111,7 +111,12 @@ DeviceState *qdev_create(BusState *bus, const char *name)
dev = qdev_try_create(bus, name);
if (!dev) {
- hw_error("Unknown device '%s' for bus '%s'\n", name, bus->info->name);
+ if (bus) {
+ hw_error("Unknown device '%s' for bus '%s'\n", name,
+ bus->info->name);
+ } else {
+ hw_error("Unknown device '%s' for default sysbus\n", name);
+ }
}
return dev;
diff --git a/hw/scsi-bus.c b/hw/scsi-bus.c
index 0b0344c..d1ef559 100644
--- a/hw/scsi-bus.c
+++ b/hw/scsi-bus.c
@@ -725,7 +725,7 @@ void scsi_device_purge_requests(SCSIDevice *sdev)
static char *scsibus_get_fw_dev_path(DeviceState *dev)
{
- SCSIDevice *d = (SCSIDevice*)dev;
+ SCSIDevice *d = DO_UPCAST(SCSIDevice, qdev, dev);
SCSIBus *bus = scsi_bus_from_device(d);
char path[100];
int i;
OpenPOWER on IntegriCloud