diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-09-10 10:58:46 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-11 10:19:48 -0500 |
commit | dc1c21e60c91bbfcbf73c84917581ff9490e7e22 (patch) | |
tree | 3384e1df7c0125cb6728d93a9753a9475f8836ac /hw | |
parent | f0457e8d88a9ddcf7505f97cbeefd0673207713c (diff) | |
download | hqemu-dc1c21e60c91bbfcbf73c84917581ff9490e7e22.zip hqemu-dc1c21e60c91bbfcbf73c84917581ff9490e7e22.tar.gz |
convert braille chardev to QemuOpts.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/baum.c | 2 | ||||
-rw-r--r-- | hw/baum.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -563,7 +563,7 @@ static void baum_chr_read(void *opaque) } } -CharDriverState *chr_baum_init(void) +CharDriverState *chr_baum_init(QemuOpts *opts) { BaumDriverState *baum; CharDriverState *chr; @@ -26,4 +26,4 @@ USBDevice *usb_baum_init(void); /* char device */ -CharDriverState *chr_baum_init(void); +CharDriverState *chr_baum_init(QemuOpts *opts); |