Lines Matching defs:slot
173 static void __init dmi_save_ident(const struct dmi_header *dm, int slot,
179 if (dmi_ident[slot] || dm->length <= string)
186 dmi_ident[slot] = p;
189 static void __init dmi_save_release(const struct dmi_header *dm, int slot,
196 if (dmi_ident[slot] || dm->length < index)
214 dmi_ident[slot] = s;
217 static void __init dmi_save_uuid(const struct dmi_header *dm, int slot,
224 if (dmi_ident[slot] || dm->length < index + 16)
252 dmi_ident[slot] = s;
255 static void __init dmi_save_type(const struct dmi_header *dm, int slot,
261 if (dmi_ident[slot] || dm->length <= index)
270 dmi_ident[slot] = s;
832 int s = dmi->matches[i].slot;
867 return dmi->matches[0].slot == DMI_NONE;
874 * their slot's (field index's) data (i.e., each
876 * DMI slot's string data) to be considered a
905 * their slot's (field index's) data (i.e., each
907 * DMI slot's string data) to be considered a
1172 * Return the DMI memory type of the module in the slot associated with the
1190 * dmi_memdev_handle - get the DMI handle of a memory slot
1191 * @slot: slot number
1193 * Return the DMI handle associated with a given memory slot, or %0xFFFF
1194 * if there is no such slot.
1196 u16 dmi_memdev_handle(int slot)
1198 if (dmi_memdev && slot >= 0 && slot < dmi_memdev_nr)
1199 return dmi_memdev[slot].handle;