20 * DMI callbacks for problem boards
27 struct dmi_system_id
{
28 int (*callback
)(struct dmi_system_id
*);
30 struct dmi_strmatch matches
[4];
34 #define DMI_MATCH(a,b) { a, b }
36 #if defined(CONFIG_X86) && !defined(CONFIG_X86_64)
38 extern int dmi_check_system(struct dmi_system_id
*list
);
39 extern char * dmi_get_system_info(int field
);
43 static inline int dmi_check_system(struct dmi_system_id
*list
) { return 0; }
44 static inline char * dmi_get_system_info(int field
) { return NULL
; }
48 #endif /* __DMI_H__ */