diff options
author | David 'Digit' Turner <digit@android.com> | 2011-05-11 01:34:40 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2011-06-01 17:08:19 +0200 |
commit | 3b2846ad9f156e62574a0abc5ec489f8f13f1121 (patch) | |
tree | 5b824f60deb9697c002cd4b957ee12b6a0ecea97 /hw | |
parent | f645f7d6fd841e39524e5df8c1a7fd8347f92ac1 (diff) | |
download | external_qemu-3b2846ad9f156e62574a0abc5ec489f8f13f1121.zip external_qemu-3b2846ad9f156e62574a0abc5ec489f8f13f1121.tar.gz external_qemu-3b2846ad9f156e62574a0abc5ec489f8f13f1121.tar.bz2 |
qemu-char-android.c: rename to qemu-char.c
+ convert to QemuOpts* initialization functions.
Change-Id: I5a245ed2de068af49fdc92de8e3e834d0f49aa27
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 69356a5..05f893c 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 947afd9..456cb21 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); |