diff options
author | Alexander Graf <agraf@suse.de> | 2010-12-08 12:05:38 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-12-11 15:24:25 +0000 |
commit | 6bef04365589b1b82be1a1c3aa223f4bddb3dabb (patch) | |
tree | 73c3d79035f5196037236cd2117bdc8dcb8ed6ad /rwhandler.h | |
parent | 2507c12ab026b2286b0a47035c629f3d568c96f4 (diff) | |
download | qemu-6bef04365589b1b82be1a1c3aa223f4bddb3dabb.zip |
Make simple io mem handler endian aware
As an alternative to the 3 individual handlers, there is also a simplified
io mem hook function. To be consistent, let's add an endianness parameter
there too.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'rwhandler.h')
-rw-r--r-- | rwhandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rwhandler.h b/rwhandler.h index bc11849572..b2a5790548 100644 --- a/rwhandler.h +++ b/rwhandler.h @@ -19,7 +19,7 @@ struct ReadWriteHandler { /* Helpers for when we want to use a single routine with length. */ /* CPU memory handler: both read and write must be present. */ -int cpu_register_io_memory_simple(ReadWriteHandler *); +int cpu_register_io_memory_simple(ReadWriteHandler *, int endian); /* io port handler: can supply only read or write handlers. */ int register_ioport_simple(ReadWriteHandler *, pio_addr_t start, int length, int size); |