aboutsummaryrefslogtreecommitdiffstats
path: root/qemu-common.h
diff options
context:
space:
mode:
authorDavid Turner <digit@android.com>2010-09-10 11:05:02 +0200
committerDavid 'Digit' Turner <digit@android.com>2010-09-13 00:30:34 -0700
commit4143d8f4c302878923bde0cb2420f4ca27245bcd (patch)
tree89a39c92192815662e4721c567dfc8651f62b346 /qemu-common.h
parentf7dd220a26b2c2153e3b331b06826934cac292fb (diff)
downloadexternal_qemu-4143d8f4c302878923bde0cb2420f4ca27245bcd.zip
external_qemu-4143d8f4c302878923bde0cb2420f4ca27245bcd.tar.gz
external_qemu-4143d8f4c302878923bde0cb2420f4ca27245bcd.tar.bz2
upstream: rename IOCanRWHandler into IOCanReadHandler
Diffstat (limited to 'qemu-common.h')
-rw-r--r--qemu-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-common.h b/qemu-common.h
index 366c002..73555e1 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -184,7 +184,7 @@ void QEMU_NORETURN hw_error(const char *fmt, ...)
/* IO callbacks. */
typedef void IOReadHandler(void *opaque, const uint8_t *buf, int size);
-typedef int IOCanRWHandler(void *opaque);
+typedef int IOCanReadHandler(void *opaque);
typedef void IOHandler(void *opaque);
struct ParallelIOArg {