Subversion Repositories Kolibri OS

Rev

Rev 948 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 948 Rev 951
Line 101... Line 101...
101
 
101
 
Line 102... Line 102...
102
            if( (dev = agp_dev_match(pciId, agp_dev_table))!=NULL)
102
            if( (dev = agp_dev_match(pciId, agp_dev_table))!=NULL)
103
            {
103
            {
104
                dbgprintf("detect agp host %x\n",dev->id);
104
                dbgprintf("detect agp host %x\n",dev->id);
105
                agp_dev.PciTag = pciTag(bus,(devfn>>3)&0x1F,devfn&0x7);
-
 
106
                dbgprintf("fetch size = %x\n", intel_8xx_fetch_size());
-
 
107
                agp_generic_create_gatt_table(&agp_dev);
-
 
108
                intel_845_configure(&agp_dev);
-
 
109
                return 1;
-
 
110
            };
-
 
Line -... Line 105...
-
 
105
 
Line -... Line 106...
-
 
106
                PCITAG PciTag = pciTag(bus,(devfn>>3)&0x1F,devfn&0x7);
-
 
107
 
111
 
108
                return init_bridge(PciTag);
112
 
109
            };
113
        };
110
        };
114
    };
111
    };
-
 
112
    return 0;
-
 
113
};