~ubuntu-bugs-auftrags-killer/qemu/proper-error-characters

« back to all changes in this revision

Viewing changes to hw/pl031.c

  • Committer: Blue Swirl
  • Date: 2009-08-25 18:29:31 UTC
  • Revision ID: git-v1:d60efc6b0d3d4e90cbbb86e21451e55263c29416
Make CPURead/WriteFunc structure 'const'

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
    }
172
172
}
173
173
 
174
 
static CPUWriteMemoryFunc * pl031_writefn[] = {
 
174
static CPUWriteMemoryFunc * const  pl031_writefn[] = {
175
175
    pl031_write,
176
176
    pl031_write,
177
177
    pl031_write
178
178
};
179
179
 
180
 
static CPUReadMemoryFunc * pl031_readfn[] = {
 
180
static CPUReadMemoryFunc * const  pl031_readfn[] = {
181
181
    pl031_read,
182
182
    pl031_read,
183
183
    pl031_read