qdev: Fix Open Firmware comment
Commit 0d936928ef
removed code,
but left the related comment at a location where it no longer
belongs to.
The patch moves the comment to the correct callback and improves the text.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
ac873f1ed5
commit
c578861451
11
hw/qdev.h
11
hw/qdev.h
@ -78,12 +78,6 @@ struct DeviceState {
|
|||||||
int alias_required_for_version;
|
int alias_required_for_version;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* This callback is used to create Open Firmware device path in accordance with
|
|
||||||
* OF spec http://forthworks.com/standards/of1275.pdf. Indicidual bus bindings
|
|
||||||
* can be found here http://playground.sun.com/1275/bindings/.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define TYPE_BUS "bus"
|
#define TYPE_BUS "bus"
|
||||||
#define BUS(obj) OBJECT_CHECK(BusState, (obj), TYPE_BUS)
|
#define BUS(obj) OBJECT_CHECK(BusState, (obj), TYPE_BUS)
|
||||||
#define BUS_CLASS(klass) OBJECT_CLASS_CHECK(BusClass, (klass), TYPE_BUS)
|
#define BUS_CLASS(klass) OBJECT_CLASS_CHECK(BusClass, (klass), TYPE_BUS)
|
||||||
@ -95,6 +89,11 @@ struct BusClass {
|
|||||||
/* FIXME first arg should be BusState */
|
/* FIXME first arg should be BusState */
|
||||||
void (*print_dev)(Monitor *mon, DeviceState *dev, int indent);
|
void (*print_dev)(Monitor *mon, DeviceState *dev, int indent);
|
||||||
char *(*get_dev_path)(DeviceState *dev);
|
char *(*get_dev_path)(DeviceState *dev);
|
||||||
|
/*
|
||||||
|
* This callback is used to create Open Firmware device path in accordance
|
||||||
|
* with OF spec http://forthworks.com/standards/of1275.pdf. Individual bus
|
||||||
|
* bindings can be found at http://playground.sun.com/1275/bindings/.
|
||||||
|
*/
|
||||||
char *(*get_fw_dev_path)(DeviceState *dev);
|
char *(*get_fw_dev_path)(DeviceState *dev);
|
||||||
int (*reset)(BusState *bus);
|
int (*reset)(BusState *bus);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user