diff options
author | Len Brown <len.brown@intel.com> | 2008-01-23 16:36:45 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-01-23 21:23:13 -0500 |
commit | f89e3b0620a0dc19f313218f55373b9361142203 (patch) | |
tree | 4263ef4f23e57715139f3e0cf4380b334b5defef | |
parent | 81b4e1f6269cea345f17d3aa349ec9beb31a8cd3 (diff) |
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>
-rw-r--r-- | drivers/firmware/dmi_scan.c | 8 | ||||
-rw-r--r-- | include/linux/dmi.h | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/drivers/firmware/dmi_scan.c b/drivers/firmware/dmi_scan.c index 0cdadea7a40e..5e596a7e3601 100644 --- a/drivers/firmware/dmi_scan.c +++ b/drivers/firmware/dmi_scan.c | |||
@@ -470,3 +470,11 @@ int dmi_get_year(int field) | |||
470 | return year; | 470 | return year; |
471 | } | 471 | } |
472 | 472 | ||
473 | /** | ||
474 | * dmi_get_slot - return dmi_ident[slot] | ||
475 | * @slot: index into dmi_ident[] | ||
476 | */ | ||
477 | char *dmi_get_slot(int slot) | ||
478 | { | ||
479 | return(dmi_ident[slot]); | ||
480 | } | ||
diff --git a/include/linux/dmi.h b/include/linux/dmi.h index b1251b2af568..5b42a659a308 100644 --- a/include/linux/dmi.h +++ b/include/linux/dmi.h | |||
@@ -79,6 +79,7 @@ extern void dmi_scan_machine(void); | |||
79 | extern int dmi_get_year(int field); | 79 | extern int dmi_get_year(int field); |
80 | extern int dmi_name_in_vendors(const char *str); | 80 | extern int dmi_name_in_vendors(const char *str); |
81 | extern int dmi_available; | 81 | extern int dmi_available; |
82 | extern char *dmi_get_slot(int slot); | ||
82 | 83 | ||
83 | #else | 84 | #else |
84 | 85 | ||
@@ -89,6 +90,7 @@ static inline const struct dmi_device * dmi_find_device(int type, const char *na | |||
89 | static inline int dmi_get_year(int year) { return 0; } | 90 | static inline int dmi_get_year(int year) { return 0; } |
90 | static inline int dmi_name_in_vendors(const char *s) { return 0; } | 91 | static inline int dmi_name_in_vendors(const char *s) { return 0; } |
91 | #define dmi_available 0 | 92 | #define dmi_available 0 |
93 | static inline char *dmi_get_slot(int slot) { return NULL; } | ||
92 | 94 | ||
93 | #endif | 95 | #endif |
94 | 96 | ||