diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-02-05 10:19:07 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-03-11 11:40:15 +0000 |
commit | a348f108842fb928563865c9918642900cd0d477 (patch) | |
tree | 4f931c6cfbd4aab447a7f7bade1d176a457ad76b /hw/ide/piix.c | |
parent | 9d6fca70c771ac50a641aa2558e3a19c4e2b09b8 (diff) | |
download | qemu-a348f108842fb928563865c9918642900cd0d477.tar.gz qemu-a348f108842fb928563865c9918642900cd0d477.tar.bz2 qemu-a348f108842fb928563865c9918642900cd0d477.zip |
Add missing const attributes for MemoryRegionOps
Most MemoryRegionOps already had the const attribute.
This patch adds it to the remaining ones.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/ide/piix.c')
-rw-r--r-- | hw/ide/piix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/piix.c b/hw/ide/piix.c index 1030fcc31c..bcaa400e2d 100644 --- a/hw/ide/piix.c +++ b/hw/ide/piix.c @@ -79,7 +79,7 @@ static void bmdma_write(void *opaque, target_phys_addr_t addr, } } -static MemoryRegionOps piix_bmdma_ops = { +static const MemoryRegionOps piix_bmdma_ops = { .read = bmdma_read, .write = bmdma_write, }; |