From 634aa310c5130ef4d38f339bb26b01b5a7bad4e9 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 21 Jul 2014 10:06:47 -0400 Subject: [PATCH] dix: (Don't) change BITMAP_SCANLINE_UNIT on Linux s390{, x} Every other architecture sets this to 32, and I can't think of any benefit s390 would derive from changing it. It is, at any rate, something the client already copes with, and the only internal code impact seems to be some complicated math in miGetPlane, which you never hit if you're using fb. Signed-off-by: Adam Jackson Reviewed-by: Daniel Stone Signed-off-by: Keith Packard --- include/servermd.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/servermd.h b/include/servermd.h index 6e71db4fb..16e39a2f0 100644 --- a/include/servermd.h +++ b/include/servermd.h @@ -192,7 +192,6 @@ SOFTWARE. #define BITMAP_BIT_ORDER MSBFirst #define GLYPHPADBYTES 4 -#define BITMAP_SCANLINE_UNIT 8 #define FAST_UNALIGNED_READ #endif /* linux/s390 */ @@ -203,7 +202,6 @@ SOFTWARE. #define BITMAP_BIT_ORDER MSBFirst #define GLYPHPADBYTES 4 -#define BITMAP_SCANLINE_UNIT 8 #define FAST_UNALIGNED_READ #endif /* linux/s390x */