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

« back to all changes in this revision

Viewing changes to hw/tc6393xb.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:
567
567
{
568
568
    int iomemtype;
569
569
    TC6393xbState *s;
570
 
    CPUReadMemoryFunc *tc6393xb_readfn[] = {
 
570
    CPUReadMemoryFunc * const tc6393xb_readfn[] = {
571
571
        tc6393xb_readb,
572
572
        tc6393xb_readw,
573
573
        tc6393xb_readl,
574
574
    };
575
 
    CPUWriteMemoryFunc *tc6393xb_writefn[] = {
 
575
    CPUWriteMemoryFunc * const tc6393xb_writefn[] = {
576
576
        tc6393xb_writeb,
577
577
        tc6393xb_writew,
578
578
        tc6393xb_writel,