19 * DMI callbacks for problem boards
26 struct dmi_system_id
{
27 int (*callback
)(struct dmi_system_id
*);
29 struct dmi_strmatch matches
[4];
33 #define DMI_MATCH(a,b) { a, b }
35 #if defined(CONFIG_X86) && !defined(CONFIG_X86_64)
37 extern int dmi_check_system(struct dmi_system_id
*list
);
38 extern char * dmi_get_system_info(int field
);
42 static inline int dmi_check_system(struct dmi_system_id
*list
) { return 0; }
43 static inline char * dmi_get_system_info(int field
) { return NULL
; }
47 #endif /* __DMI_H__ */