diff -ubr xc/programs/Xserver/hw/xfree86/common/xf86pciBus.c xc.1/programs/Xserver/hw/xfree86/common/xf86pciBus.c --- xc/programs/Xserver/hw/xfree86/common/xf86pciBus.c 2003-04-02 11:24:09.000000000 -0500 +++ xc.1/programs/Xserver/hw/xfree86/common/xf86pciBus.c 2003-04-02 11:30:37.000000000 -0500 @@ -576,8 +576,10 @@ #ifdef DEBUG ErrorF("pciIoAccessDisable: 0x%05lx\n", *(PCITAG *)arg); #endif +#if 0 pArg->ctrl &= ~SETBITS; (*pArg->func)(pArg->tag, PCI_CMD_STAT_REG, pArg->ctrl); +#endif } #undef SETBITS --- xc/programs/Xserver/hw/xfree86/common/xf86pciBus.c 2003-04-02 11:47:30.000000000 -0500 +++ xc1/programs/Xserver/hw/xfree86/common/xf86pciBus.c 2003-04-08 15:10:29.000000000 -0400 @@ -573,6 +573,7 @@ pciIoAccessEnable(void* arg) static void pciIoAccessDisable(void* arg) { +#if 0 #ifdef DEBUG ErrorF("pciIoAccessDisable: 0x%05lx\n", *(PCITAG *)arg); #endif @@ -580,6 +581,7 @@ pciIoAccessDisable(void* arg) pArg->ctrl &= ~SETBITS; (*pArg->func)(pArg->tag, PCI_CMD_STAT_REG, pArg->ctrl); #endif +#endif } #undef SETBITS @@ -597,11 +599,13 @@ pciIo_MemAccessEnable(void* arg) static void pciIo_MemAccessDisable(void* arg) { +#if 0 #ifdef DEBUG ErrorF("pciIo_MemAccessDisable: 0x%05lx\n", *(PCITAG *)arg); #endif pArg->ctrl &= ~SETBITS; (*pArg->func)(pArg->tag, PCI_CMD_STAT_REG, pArg->ctrl); +#endif } #undef SETBITS @@ -619,11 +623,13 @@ pciMemAccessEnable(void* arg) static void pciMemAccessDisable(void* arg) { +#if 0 #ifdef DEBUG ErrorF("pciMemAccessDisable: 0x%05lx\n", *(PCITAG *)arg); #endif pArg->ctrl &= ~SETBITS; (*pArg->func)(pArg->tag, PCI_CMD_STAT_REG, pArg->ctrl); +#endif } #undef SETBITS #undef pArg