~ubuntu-branches/ubuntu/hardy/kvm/hardy-backports

« back to all changes in this revision

Viewing changes to qemu/hw/tcx.c

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2008-02-26 13:10:57 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20080226131057-s67x6l89mtjw1x9b
Tags: 1:62+dfsg-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
457
457
}
458
458
 
459
459
static CPUReadMemoryFunc *tcx_dac_read[3] = {
460
 
    tcx_dac_readl,
461
 
    tcx_dac_readl,
 
460
    NULL,
 
461
    NULL,
462
462
    tcx_dac_readl,
463
463
};
464
464
 
465
465
static CPUWriteMemoryFunc *tcx_dac_write[3] = {
466
 
    tcx_dac_writel,
467
 
    tcx_dac_writel,
 
466
    NULL,
 
467
    NULL,
468
468
    tcx_dac_writel,
469
469
};
470
470
 
479
479
}
480
480
 
481
481
static CPUReadMemoryFunc *tcx_dummy_read[3] = {
482
 
    tcx_dummy_readl,
483
 
    tcx_dummy_readl,
 
482
    NULL,
 
483
    NULL,
484
484
    tcx_dummy_readl,
485
485
};
486
486
 
487
487
static CPUWriteMemoryFunc *tcx_dummy_write[3] = {
488
 
    tcx_dummy_writel,
489
 
    tcx_dummy_writel,
 
488
    NULL,
 
489
    NULL,
490
490
    tcx_dummy_writel,
491
491
};
492
492