convert msmouse chardev to QemuOpts.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Gerd Hoffmann 2009-09-10 10:58:45 +02:00 committed by Anthony Liguori
parent 3c17affbff
commit f0457e8d88
3 changed files with 7 additions and 7 deletions

View file

@ -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;

View file

@ -1,2 +1,2 @@
/* msmouse.c */
CharDriverState *qemu_chr_open_msmouse(void);
CharDriverState *qemu_chr_open_msmouse(QemuOpts *opts);