Lines Matching defs:ids
1207 * @ids: array of VIO device id structures to search in
1215 const struct vio_device_id *ids, const struct vio_dev *dev)
1217 while (ids->type[0] != '\0') {
1218 if ((strncmp(dev->type, ids->type, strlen(ids->type)) == 0) &&
1220 ids->compat))
1221 return ids;
1222 ids++;
1592 const struct vio_device_id *ids = vio_drv->id_table;
1594 return (ids != NULL) && (vio_match_device(ids, vio_dev) != NULL);