Lines Matching defs:bus
124 I2CBusPtr bus;
150 bus = xf86CreateI2CBusRec();
152 if (!bus)
155 bus->BusName = name;
156 bus->scrnIndex = pScrni->scrnIndex;
158 bus->I2CGetBits = geode_ddc_getbits;
159 bus->I2CPutBits = geode_ddc_putbits;
160 bus->DriverPrivate.ptr = (void *) (unsigned long) (ddciobase);
162 if (!xf86I2CBusInit(bus))
165 *ptr = bus;
173 I2CBusPtr bus;
175 if (!GeodeI2CInit(pScrni, &bus, "CS5536 DDC BUS"))
178 mon = xf86DoEDID_DDC2(DDC_CALL(pScrni), bus);
185 xf86DestroyI2CBusRec(bus, FALSE, FALSE);