diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2010-12-24 12:14:12 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2010-12-24 10:35:27 +0200 |
commit | a2ee6b4fcb3e2f2f5d60211ce0f734c61f8e0e30 (patch) | |
tree | 34122d0f01cef00c44238ad4024aa5acae8d2e03 /hw/qdev.c | |
parent | b3a29fd5604841dac8bfee1bac35f150cab976fb (diff) |
qdev: export qdev_find_recursive() for later use
This patch exports qdev_find_recursive() for later use.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/qdev.c')
-rw-r--r-- | hw/qdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -548,7 +548,7 @@ static BusState *qbus_find_recursive(BusState *bus, const char *name, return NULL; } -static DeviceState *qdev_find_recursive(BusState *bus, const char *id) +DeviceState *qdev_find_recursive(BusState *bus, const char *id) { DeviceState *dev, *ret; BusState *child; |