diff options
| author | Simon Ser <simon.ser@intel.com> | 2019-06-03 17:44:54 +0300 |
|---|---|---|
| committer | Simon Ser <simon.ser@intel.com> | 2019-06-04 16:18:44 +0300 |
| commit | ebbfd2e1f5602cba5bd7e1cba400f1161e55f09b (patch) | |
| tree | 0bd70e254619ef76844eb67c3d89363940856828 /lib | |
| parent | e81b020f8af3c605b5649591dd46ae3118f2ec23 (diff) | |
lib/igt_edid: fix missing include in header
detailed_timing_set_mode uses detailed_timing_set_mode from xf86drmMode.h, but
doesn't include it. This has gone unnoticed because all the igt_edid users
were already including this file.
Signed-off-by: Simon Ser <simon.ser@intel.com>
Fixes: a2fd0489c87a ("lib/igt_edid: new library for generating EDIDs")
Reviewed-by: Martin Peres <martin.peres@linux.intel.com>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/igt_edid.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/igt_edid.h b/lib/igt_edid.h index 39d1842d..00596ef1 100644 --- a/lib/igt_edid.h +++ b/lib/igt_edid.h @@ -30,6 +30,8 @@ #include <stdint.h> +#include <xf86drmMode.h> + struct est_timings { uint8_t t1; uint8_t t2; |
