summaryrefslogtreecommitdiff
path: root/src/loader
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@intel.com>2019-10-02 20:09:50 +0100
committerEric Engestrom <eric.engestrom@intel.com>2019-10-07 21:30:16 +0100
commit5be6c8959c1c8354423ca4fee2c3da4532100a5c (patch)
tree57fe202291b6bb1cedf68e456068003cf4a4312d /src/loader
parent26149d119be24c027a0a247bf9408bab642e5958 (diff)
downloadmesa-5be6c8959c1c8354423ca4fee2c3da4532100a5c.tar.gz
mesa-5be6c8959c1c8354423ca4fee2c3da4532100a5c.tar.bz2
mesa-5be6c8959c1c8354423ca4fee2c3da4532100a5c.zip
loader: s/int/bool/ for predicate result
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Acked-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Diffstat (limited to 'src/loader')
-rw-r--r--src/loader/pci_id_driver_map.c8
-rw-r--r--src/loader/pci_id_driver_map.h5
2 files changed, 8 insertions, 5 deletions
diff --git a/src/loader/pci_id_driver_map.c b/src/loader/pci_id_driver_map.c
index 8b2079e4354..d599abf78a5 100644
--- a/src/loader/pci_id_driver_map.c
+++ b/src/loader/pci_id_driver_map.c
@@ -21,7 +21,9 @@
* SOFTWARE.
*/
-int is_nouveau_vieux(int fd);
+#include <stdbool.h>
+
+bool is_nouveau_vieux(int fd);
#ifdef HAVE_LIBDRM
@@ -42,7 +44,7 @@ nouveau_chipset(int fd)
return gp.value;
}
-int
+bool
is_nouveau_vieux(int fd)
{
int chipset = nouveau_chipset(fd);
@@ -52,6 +54,6 @@ is_nouveau_vieux(int fd)
#else
-int is_nouveau_vieux(int fd) { return 0; }
+bool is_nouveau_vieux(int fd) { return false; }
#endif
diff --git a/src/loader/pci_id_driver_map.h b/src/loader/pci_id_driver_map.h
index 2909f69f24f..63fb1ae01b6 100644
--- a/src/loader/pci_id_driver_map.h
+++ b/src/loader/pci_id_driver_map.h
@@ -1,6 +1,7 @@
#ifndef _PCI_ID_DRIVER_MAP_H_
#define _PCI_ID_DRIVER_MAP_H_
+#include <stdbool.h>
#include <stddef.h>
#ifndef ARRAY_SIZE
@@ -83,14 +84,14 @@ static const int vmwgfx_chip_ids[] = {
#undef CHIPSET
};
-int is_nouveau_vieux(int fd);
+bool is_nouveau_vieux(int fd);
static const struct {
int vendor_id;
const char *driver;
const int *chip_ids;
int num_chips_ids;
- int (*predicate)(int fd);
+ bool (*predicate)(int fd);
} driver_map[] = {
{ 0x8086, "i915", i915_chip_ids, ARRAY_SIZE(i915_chip_ids) },
{ 0x8086, "iris", iris_chip_ids_1, ARRAY_SIZE(iris_chip_ids_1) },