Lines Matching defs:table
29 amba_cs_uci_id_match(const struct amba_id *table, struct amba_device *dev)
34 uci = table->data;
36 /* no table data or zero mask - return match on periphid */
47 amba_lookup(const struct amba_id *table, struct amba_device *dev)
49 while (table->mask) {
50 if (((dev->periphid & table->mask) == table->id) &&
52 (amba_cs_uci_id_match(table, dev))))
53 return table;
54 table++;