From a24a7a7a6648f1feb6ae47a8bc9166b2454b63df Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 4 Jul 2025 19:09:08 +0200 Subject: [PATCH] fb: fbbits.h: no need to include dix-config.h here All in-tree consumers already need to include dix-config.h on the very top anyways, and there are no out-of-tree consumers (private to fb subsys) Signed-off-by: Enrico Weigelt, metux IT consult --- fb/fbbits.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/fb/fbbits.h b/fb/fbbits.h index 808bf0918..3cfe535a5 100644 --- a/fb/fbbits.h +++ b/fb/fbbits.h @@ -24,15 +24,10 @@ * This file defines functions for drawing some primitives using * underlying datatypes instead of masks */ +#include "fb/fb_priv.h" #define isClipped(c,ul,lr) (((c) | ((c) - (ul)) | ((lr) - (c))) & 0x80008000) -#ifdef HAVE_DIX_CONFIG_H -#include -#endif - -#include "fb/fb_priv.h" - #define __FbMaskBits(x,w,l,n,r) { \ n = (w); \ r = FbRightMask((x)+n); \