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