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