17f4dd379Sjsg /* Public domain. */ 27f4dd379Sjsg 37f4dd379Sjsg #ifndef _LINUX_DMI_H 47f4dd379Sjsg #define _LINUX_DMI_H 57f4dd379Sjsg 67f4dd379Sjsg #include <sys/types.h> 77f4dd379Sjsg #include <linux/mod_devicetable.h> 87f4dd379Sjsg 97f4dd379Sjsg int dmi_check_system(const struct dmi_system_id *); 107f4dd379Sjsg bool dmi_match(int, const char *); 11*b1c2f9d1Sjsg const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *); 12*b1c2f9d1Sjsg const char *dmi_get_system_info(int); 137f4dd379Sjsg 147f4dd379Sjsg #endif 15