]> git.proxmox.com Git - mirror_qemu.git/blobdiff - hw/pcnet-pci.c
pcnet: Move BCR defines to header
[mirror_qemu.git] / hw / pcnet-pci.c
index 41a6e07c0ec9da430b7aed442ea42b6c26900ac9..4f97f965f4e726d34f01e8679266466c3a336ff1 100644 (file)
@@ -56,9 +56,9 @@ static void pcnet_aprom_writeb(void *opaque, uint32_t addr, uint32_t val)
 #ifdef PCNET_DEBUG
     printf("pcnet_aprom_writeb addr=0x%08x val=0x%02x\n", addr, val);
 #endif
-    /* Check APROMWE bit to enable write access */
-    if (pcnet_bcr_readw(s,2) & 0x100)
+    if (BCR_APROMWE(s)) {
         s->prom[addr & 15] = val;
+    }
 }
 
 static uint32_t pcnet_aprom_readb(void *opaque, uint32_t addr)