Mesa (master): gbm: remove left-over array

Emil Velikov evelikov at kemper.freedesktop.org
Wed Sep 14 13:39:34 UTC 2016


Module: Mesa
Branch: master
Commit: 4bb9efb59290c77ef4acd4abab5729efa9bf4e24
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4bb9efb59290c77ef4acd4abab5729efa9bf4e24

Author: Eric Engestrom <eric.engestrom at imgtec.com>
Date:   Tue Sep 13 17:32:39 2016 +0100

gbm: remove left-over array

e7c8c85785b3a8f29e3f ("gbm: Removed unused function.") forgot to remove
the global array used only by that function.

Signed-off-by: Eric Engestrom <eric.engestrom at imgtec.com>
Reviewed-by: Emil Velikov <emil.velikov at collabora.com>

---

 src/gbm/main/gbm.c | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/src/gbm/main/gbm.c b/src/gbm/main/gbm.c
index 1acbbcd..5a8e8b7 100644
--- a/src/gbm/main/gbm.c
+++ b/src/gbm/main/gbm.c
@@ -45,12 +45,6 @@
 #include "gbmint.h"
 #include "backend.h"
 
-#define ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0]))
-
-static struct gbm_device *devices[16];
-
-static int device_num = 0;
-
 /** Returns the file description for the gbm device
  *
  * \return The fd that the struct gbm_device was created with
@@ -127,9 +121,6 @@ gbm_create_device(int fd)
       return NULL;
    }
 
-   if (device_num == 0)
-      memset(devices, 0, sizeof devices);
-
    gbm = _gbm_create_device(fd);
    if (gbm == NULL)
       return NULL;
@@ -138,9 +129,6 @@ gbm_create_device(int fd)
    gbm->stat = buf;
    gbm->refcount = 1;
 
-   if (device_num < ARRAY_SIZE(devices)-1)
-      devices[device_num++] = gbm;
-
    return gbm;
 }
 




More information about the mesa-commit mailing list