Lines Matching defs:table
101 max63xx_select_timeout(const struct max63xx_timeout *table, int value)
103 while (table->twd) {
104 if (value <= table->twd) {
105 if (nodelay && table->tdelay == 0)
106 return table;
109 return table;
112 table++;
203 const struct max63xx_timeout *table;
211 table = device_get_match_data(dev);
212 if (!table)
213 table = (struct max63xx_timeout *)pdev->id_entry->driver_data;
218 wdt->timeout = max63xx_select_timeout(table, heartbeat);