aboutsummaryrefslogtreecommitdiffstats
path: root/hw/hw.h
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@android.com>2010-05-10 18:44:56 -0700
committerDavid 'Digit' Turner <digit@android.com>2010-05-11 16:30:28 -0700
commit3266b5118e1d9ac13ea87bc24f37b50d22a2b81f (patch)
tree17e0b09fb41548191c041563e0cedb2631cc75af /hw/hw.h
parent9d6baf019d82e303b985fdaa7b3d282076b32586 (diff)
downloadexternal_qemu-3266b5118e1d9ac13ea87bc24f37b50d22a2b81f.zip
external_qemu-3266b5118e1d9ac13ea87bc24f37b50d22a2b81f.tar.gz
external_qemu-3266b5118e1d9ac13ea87bc24f37b50d22a2b81f.tar.bz2
Upstream: Move ioport code to ioport.[hc]
Change-Id: I41aa30fff127338665a6a32fa66dcd43dd3bfe8b
Diffstat (limited to 'hw/hw.h')
-rw-r--r--hw/hw.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/hw/hw.h b/hw/hw.h
index 89c0ef0..b987097 100644
--- a/hw/hw.h
+++ b/hw/hw.h
@@ -35,6 +35,7 @@ typedef int (QEMUFileRateLimit)(void *opaque);
* the old rate otherwise
*/
typedef size_t (QEMUFileSetRateLimit)(void *opaque, size_t new_rate);
+typedef size_t (QEMUFileGetRateLimit)(void *opaque);
QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
QEMUFileGetBufferFunc *get_buffer,
@@ -260,8 +261,4 @@ void qemu_register_reset(QEMUResetHandler *func, int order, void *opaque);
typedef int QEMUBootSetHandler(void *opaque, const char *boot_device);
void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque);
-/* These should really be in isa.h, but are here to make pc.h happy. */
-typedef void (IOPortWriteFunc)(void *opaque, uint32_t address, uint32_t data);
-typedef uint32_t (IOPortReadFunc)(void *opaque, uint32_t address);
-
#endif