Lines Matching refs:list
290 list_add(&dev->list, &dmi_devices);
331 list_add(&dev->list, &dmi_devices);
354 list_add_tail(&dev->list, &dmi_devices);
381 list_add(&dev->dev.list, &dmi_devices);
879 * @list: array of dmi_system_id structures to match against
880 * All non-null elements of the list must match
882 * list string must be a substring of the specified
892 int dmi_check_system(const struct dmi_system_id *list)
897 for (d = list; !dmi_is_end_of_table(d); d++)
910 * @list: array of dmi_system_id structures to match against
911 * All non-null elements of the list must match
913 * list string must be a substring of the specified
922 const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *list)
926 for (d = list; !dmi_is_end_of_table(d); d++)
982 * Iterates through the list of known onboard devices. If a device is
991 const struct list_head *head = from ? &from->list : &dmi_devices;
996 list_entry(d, struct dmi_device, list);