diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-09-10 10:58:45 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-11 10:19:48 -0500 |
commit | f0457e8d88a9ddcf7505f97cbeefd0673207713c (patch) | |
tree | 56a998d4dab3f7b50808f8cf11db2ac7751dc010 /hw | |
parent | 3c17affbff1e6fe363f5f3def5e219ab8c108b8e (diff) |
convert msmouse 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/msmouse.c | 2 | ||||
-rw-r--r-- | hw/msmouse.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/msmouse.c b/hw/msmouse.c index 69356a5357..05f893ca93 100644 --- a/hw/msmouse.c +++ b/hw/msmouse.c @@ -64,7 +64,7 @@ static void msmouse_chr_close (struct CharDriverState *chr) qemu_free (chr); } -CharDriverState *qemu_chr_open_msmouse(void) +CharDriverState *qemu_chr_open_msmouse(QemuOpts *opts) { CharDriverState *chr; diff --git a/hw/msmouse.h b/hw/msmouse.h index 947afd990e..456cb21424 100644 --- a/hw/msmouse.h +++ b/hw/msmouse.h @@ -1,2 +1,2 @@ /* msmouse.c */ -CharDriverState *qemu_chr_open_msmouse(void); +CharDriverState *qemu_chr_open_msmouse(QemuOpts *opts); |