diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-25 18:29:31 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-25 18:29:31 +0000 |
commit | d60efc6b0d3d4e90cbbb86e21451e55263c29416 (patch) | |
tree | d5167171d11fa8e54f0ff11fae42c77cfac5af4a /hw/grackle_pci.c | |
parent | fa31af0e63c5629d0bdc63eb87c1e44abd4fdb9e (diff) |
Make CPURead/WriteFunc structure 'const'
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/grackle_pci.c')
-rw-r--r-- | hw/grackle_pci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/grackle_pci.c b/hw/grackle_pci.c index b893ebe9b7..5b6778ed4a 100644 --- a/hw/grackle_pci.c +++ b/hw/grackle_pci.c @@ -72,25 +72,25 @@ static uint32_t pci_grackle_config_readl (void *opaque, target_phys_addr_t addr) return val; } -static CPUWriteMemoryFunc *pci_grackle_config_write[] = { +static CPUWriteMemoryFunc * const pci_grackle_config_write[] = { &pci_grackle_config_writel, &pci_grackle_config_writel, &pci_grackle_config_writel, }; -static CPUReadMemoryFunc *pci_grackle_config_read[] = { +static CPUReadMemoryFunc * const pci_grackle_config_read[] = { &pci_grackle_config_readl, &pci_grackle_config_readl, &pci_grackle_config_readl, }; -static CPUWriteMemoryFunc *pci_grackle_write[] = { +static CPUWriteMemoryFunc * const pci_grackle_write[] = { &pci_host_data_writeb, &pci_host_data_writew, &pci_host_data_writel, }; -static CPUReadMemoryFunc *pci_grackle_read[] = { +static CPUReadMemoryFunc * const pci_grackle_read[] = { &pci_host_data_readb, &pci_host_data_readw, &pci_host_data_readl, |