diff options
author | Armin K <[email protected]> | 2014-01-19 15:09:33 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-01-19 15:20:58 +0000 |
commit | ad3c99e22a688b7c3f15894aabbedcc5cd89230b (patch) | |
tree | efb65410aa25b6ea4aa46f350544e42bbfc8eea2 /src/gallium/auxiliary/pipe-loader | |
parent | 26d380da69d3fc3a4ced291028c105c0ac0f1a92 (diff) |
pipe-loader: Fix build
pipe_loader_drm.c: In function 'pipe_loader_drm_probe_fd':
pipe_loader_drm.c:120:4: error: implicit declaration of function 'loader_get_pci_id_for_fd' [-Werror=implicit-function-declaration]
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c index d70a428b910..d6869fda65d 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c @@ -41,6 +41,7 @@ #endif +#include "loader.h" #include "state_tracker/drm_driver.h" #include "pipe_loader_priv.h" |