aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firmware
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2008-01-23 16:36:45 -0500
committerLen Brown <len.brown@intel.com>2008-01-23 21:23:13 -0500
commitf89e3b0620a0dc19f313218f55373b9361142203 (patch)
tree4263ef4f23e57715139f3e0cf4380b334b5defef /drivers/firmware
parentDMI: move dmi_available declaration to linux/dmi.h (diff)
downloadlinux-dev-f89e3b0620a0dc19f313218f55373b9361142203.tar.xz
linux-dev-f89e3b0620a0dc19f313218f55373b9361142203.zip
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>
Diffstat (limited to 'drivers/firmware')
-rw-r--r--drivers/firmware/dmi_scan.c8
1 files changed, 8 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)
return year;
}
+/**
+ * dmi_get_slot - return dmi_ident[slot]
+ * @slot: index into dmi_ident[]
+ */
+char *dmi_get_slot(int slot)
+{
+ return(dmi_ident[slot]);
+}