Mesa (master): pipe-loader: use bool type for pipe_loader_drm_probe_fd()

Emil Velikov evelikov at kemper.freedesktop.org
Sat Feb 22 03:24:59 UTC 2014


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

Author: Emil Velikov <emil.l.velikov at gmail.com>
Date:   Sat Feb 22 03:15:42 2014 +0000

pipe-loader: use bool type for pipe_loader_drm_probe_fd()

v2: Rebase on top of the rendernode changes.

Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com>
Reviewed-by: Jakob Bornecrantz <jakob at vmware.com> (v1)
Reviewed-by: Francisco Jerez <currojerez at riseup.net> (v1)

---

 src/gallium/auxiliary/pipe-loader/pipe_loader.h     |    2 +-
 src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c |    8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader.h b/src/gallium/auxiliary/pipe-loader/pipe_loader.h
index 0064011..ce2118f 100644
--- a/src/gallium/auxiliary/pipe-loader/pipe_loader.h
+++ b/src/gallium/auxiliary/pipe-loader/pipe_loader.h
@@ -132,7 +132,7 @@ pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev);
  * \param auth_x If true, the pipe-loader will attempt to
  *               authenticate with the X server.
  */
-boolean
+bool
 pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd,
                          boolean auth_x);
 
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
index b8acbb9..a3fc186 100644
--- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
+++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
@@ -116,7 +116,7 @@ disconnect:
 #endif
 }
 
-boolean
+bool
 pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd,
                          boolean auth_x)
 {
@@ -124,7 +124,7 @@ pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd,
    int vendor_id, chip_id;
 
    if (!ddev)
-      return FALSE;
+      return false;
 
    if (loader_get_pci_id_for_fd(fd, &vendor_id, &chip_id)) {
       ddev->base.type = PIPE_LOADER_DEVICE_PCI;
@@ -144,11 +144,11 @@ pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd,
       goto fail;
 
    *dev = &ddev->base;
-   return TRUE;
+   return true;
 
   fail:
    FREE(ddev);
-   return FALSE;
+   return false;
 }
 
 static int




More information about the mesa-commit mailing list