Commit f89e3b06 authored by Len Brown's avatar Len Brown

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: default avatarLen Brown <len.brown@intel.com>
parent 81b4e1f6
...@@ -470,3 +470,11 @@ int dmi_get_year(int field) ...@@ -470,3 +470,11 @@ int dmi_get_year(int field)
return year; return year;
} }
/**
* dmi_get_slot - return dmi_ident[slot]
* @slot: index into dmi_ident[]
*/
char *dmi_get_slot(int slot)
{
return(dmi_ident[slot]);
}
...@@ -79,6 +79,7 @@ extern void dmi_scan_machine(void); ...@@ -79,6 +79,7 @@ extern void dmi_scan_machine(void);
extern int dmi_get_year(int field); extern int dmi_get_year(int field);
extern int dmi_name_in_vendors(const char *str); extern int dmi_name_in_vendors(const char *str);
extern int dmi_available; extern int dmi_available;
extern char *dmi_get_slot(int slot);
#else #else
...@@ -89,6 +90,7 @@ static inline const struct dmi_device * dmi_find_device(int type, const char *na ...@@ -89,6 +90,7 @@ static inline const struct dmi_device * dmi_find_device(int type, const char *na
static inline int dmi_get_year(int year) { return 0; } static inline int dmi_get_year(int year) { return 0; }
static inline int dmi_name_in_vendors(const char *s) { return 0; } static inline int dmi_name_in_vendors(const char *s) { return 0; }
#define dmi_available 0 #define dmi_available 0
static inline char *dmi_get_slot(int slot) { return NULL; }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment