1 /* Public domain. */ 2 3 #ifndef _LINUX_DMI_H 4 #define _LINUX_DMI_H 5 6 #include <sys/types.h> 7 #include <linux/mod_devicetable.h> 8 9 int dmi_check_system(const struct dmi_system_id *); 10 bool dmi_match(int, const char *); 11 const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *); 12 const char *dmi_get_system_info(int); 13 14 #endif 15