From d491d3c7bc8ab45b4c03ed287a176d404c34c38e Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Sat, 10 Jul 2021 23:12:04 -0700 Subject: Remove local copies of I915 macros Just use the one from the kernel headers. Updated with: git grep -l LOCAL_I915 | \ xargs sed -i -e '/^#define LOCAL_I915/d' -e 's/LOCAL_\(I915[[:alnum:]_]*\)/\1/g' Signed-off-by: Lucas De Marchi Acked-by: Daniel Vetter Reviewed-by: Ashutosh Dixit --- tests/testdisplay.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/testdisplay.c') diff --git a/tests/testdisplay.c b/tests/testdisplay.c index e2560eaf5..937a48f4d 100644 --- a/tests/testdisplay.c +++ b/tests/testdisplay.c @@ -671,14 +671,14 @@ static int opt_handler(int opt, int opt_index, void *data) test_preferred_mode = 1; break; case 't': - tiling = LOCAL_I915_FORMAT_MOD_X_TILED; + tiling = I915_FORMAT_MOD_X_TILED; break; case 'y': case OPT_YB: - tiling = LOCAL_I915_FORMAT_MOD_Y_TILED; + tiling = I915_FORMAT_MOD_Y_TILED; break; case OPT_YF: - tiling = LOCAL_I915_FORMAT_MOD_Yf_TILED; + tiling = I915_FORMAT_MOD_Yf_TILED; break; case 'r': qr_code = 1; -- cgit v1.2.3