Lines Matching defs:chipset_table
67 static u8 pci_bus_clock_list (u8 speed, struct chipset_bus_clock_list_entry * chipset_table)
69 for ( ; chipset_table->xfer_speed ; chipset_table++)
70 if (chipset_table->xfer_speed == speed) {
71 return chipset_table->chipset_settings;
73 return chipset_table->chipset_settings;
76 static u8 pci_bus_clock_list_ultra (u8 speed, struct chipset_bus_clock_list_entry * chipset_table)
78 for ( ; chipset_table->xfer_speed ; chipset_table++)
79 if (chipset_table->xfer_speed == speed) {
80 return chipset_table->ultra_settings;
82 return chipset_table->ultra_settings;