/[qemu]/qemu/hw/pci.c
ViewVC logotype

Diff of /qemu/hw/pci.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.20 by bellard, Sat Jul 23 14:27:54 2005 UTC revision 1.21 by bellard, Mon Nov 21 23:29:55 2005 UTC
# Line 1616  void pci_info(void) Line 1616  void pci_info(void)
1616    
1617  static __attribute__((unused)) uint32_t isa_inb(uint32_t addr)  static __attribute__((unused)) uint32_t isa_inb(uint32_t addr)
1618  {  {
1619      return cpu_inb(cpu_single_env, addr);      return cpu_inb(NULL, addr);
1620  }  }
1621    
1622  static void isa_outb(uint32_t val, uint32_t addr)  static void isa_outb(uint32_t val, uint32_t addr)
1623  {  {
1624      cpu_outb(cpu_single_env, addr, val);      cpu_outb(NULL, addr, val);
1625  }  }
1626    
1627  static __attribute__((unused)) uint32_t isa_inw(uint32_t addr)  static __attribute__((unused)) uint32_t isa_inw(uint32_t addr)
1628  {  {
1629      return cpu_inw(cpu_single_env, addr);      return cpu_inw(NULL, addr);
1630  }  }
1631    
1632  static __attribute__((unused)) void isa_outw(uint32_t val, uint32_t addr)  static __attribute__((unused)) void isa_outw(uint32_t val, uint32_t addr)
1633  {  {
1634      cpu_outw(cpu_single_env, addr, val);      cpu_outw(NULL, addr, val);
1635  }  }
1636    
1637  static __attribute__((unused)) uint32_t isa_inl(uint32_t addr)  static __attribute__((unused)) uint32_t isa_inl(uint32_t addr)
1638  {  {
1639      return cpu_inl(cpu_single_env, addr);      return cpu_inl(NULL, addr);
1640  }  }
1641    
1642  static __attribute__((unused)) void isa_outl(uint32_t val, uint32_t addr)  static __attribute__((unused)) void isa_outl(uint32_t val, uint32_t addr)
1643  {  {
1644      cpu_outl(cpu_single_env, addr, val);      cpu_outl(NULL, addr, val);
1645  }  }
1646    
1647  static void pci_config_writel(PCIDevice *d, uint32_t addr, uint32_t val)  static void pci_config_writel(PCIDevice *d, uint32_t addr, uint32_t val)

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26