diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-01-22 22:17:35 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-01-22 22:17:35 +0000 |
commit | 9f4f3e376d2955dca69b71e7c48f019cb3598fe6 (patch) | |
tree | 04f5c9df538b9a843df02c1beefc50a9173c26d4 /sys | |
parent | 73e872ad91f0c9a8758dd345a9b0b29a54bb5bc1 (diff) |
add DMI_EXACT_MATCH macro, handled the same as DMI_MATCH for now
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/drm/drmP.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/drmP.h b/sys/dev/pci/drm/drmP.h index a8bf3e2c065..ff7ed042b33 100644 --- a/sys/dev/pci/drm/drmP.h +++ b/sys/dev/pci/drm/drmP.h @@ -1,4 +1,4 @@ -/* $OpenBSD: drmP.h,v 1.161 2014/01/22 05:16:55 kettenis Exp $ */ +/* $OpenBSD: drmP.h,v 1.162 2014/01/22 22:17:34 jsg Exp $ */ /* drmP.h -- Private header for Direct Rendering Manager -*- linux-c -*- * Created: Mon Jan 4 10:05:05 1999 by faith@precisioninsight.com */ @@ -888,6 +888,7 @@ struct dmi_system_id { struct dmi_strmatch matches[4]; }; #define DMI_MATCH(a, b) {(a), (b)} +#define DMI_EXACT_MATCH(a, b) {(a), (b)} int dmi_check_system(const struct dmi_system_id *); |