DMI: create dmi_get_slot()

This simply allows other sub-systems (such as ACPI)
to access and print out slots in static dmi_ident[].

Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
Len Brown
2008-01-23 16:36:45 -05:00
parent 81b4e1f626
commit f89e3b0620
2 changed files with 10 additions and 0 deletions

View File

@ -470,3 +470,11 @@ int dmi_get_year(int field)
return year;
}
/**
* dmi_get_slot - return dmi_ident[slot]
* @slot: index into dmi_ident[]
*/
char *dmi_get_slot(int slot)
{
return(dmi_ident[slot]);
}