Lines Matching defs:table
103 max63xx_select_timeout(struct max63xx_timeout *table, int value)
105 while (table->twd) {
106 if (value <= table->twd) {
107 if (nodelay && table->tdelay == 0)
108 return table;
111 return table;
114 table++;
205 struct max63xx_timeout *table;
212 table = (struct max63xx_timeout *)pdev->id_entry->driver_data;
217 wdt->timeout = max63xx_select_timeout(table, heartbeat);