summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2017-01-05 14:14:48 -0500
committerAdam Jackson <ajax@redhat.com>2017-02-16 12:22:09 -0500
commit3cf99231199bd5bd9e681e85d9da1f9eb736e3e7 (patch)
treecbf40019a476938caddaa520e9f225611a8c1159
parent8c03e3474edc826e16524898eaa1195070536ac8 (diff)
downloadxorg-driver-xf86-video-fbdev-3cf99231199bd5bd9e681e85d9da1f9eb736e3e7.tar.gz
Remove dead pix24bpp variable
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--src/fbdev.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/fbdev.c b/src/fbdev.c
index 4309d76..eaf3aa8 100644
--- a/src/fbdev.c
+++ b/src/fbdev.c
@@ -76,12 +76,6 @@ enum { FBDEV_ROTATE_NONE=0, FBDEV_ROTATE_CW=270, FBDEV_ROTATE_UD=180, FBDEV_ROTA
/* -------------------------------------------------------------------- */
-/*
- * This is intentionally screen-independent. It indicates the binding
- * choice made in the first PreInit.
- */
-static int pix24bpp = 0;
-
#define FBDEV_VERSION 4000
#define FBDEV_NAME "FBDEV"
#define FBDEV_DRIVER_NAME "fbdev"
@@ -493,10 +487,6 @@ FBDevPreInit(ScrnInfoPtr pScrn, int flags)
return FALSE;
xf86PrintDepthBpp(pScrn);
- /* Get the depth24 pixmap format */
- if (pScrn->depth == 24 && pix24bpp == 0)
- pix24bpp = xf86GetBppFromDepth(pScrn, 24);
-
/* color weight */
if (pScrn->depth > 8) {
rgb zeros = { 0, 0, 0 };