diff options
author | Kenneth Graunke <[email protected]> | 2017-04-04 11:45:08 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-04-10 14:31:36 -0700 |
commit | 1dc02da6d79eef0450b43a90fddd72342140f0db (patch) | |
tree | 15730e257b50cba9c042c786a1c543bfdb23ad57 /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | 55ee8f36a8c68a0c97c837806cd38e660d6e4bf5 (diff) |
i965/drm: Drop intel_chipset.h in favor of using gen_device_info.
This moves the PCI ID detection to intel_screen.c and makes
drm_bacon_bufmgr_gem_init() take a devinfo pointer.
We also drop the HAS_LLC query stuff - devinfo has that info already,
without kernel queries, and it makes no sense to have two has_llc flags
set by different mechanisms.
Reviewed-by: Chris Wilson <[email protected]>
Acked-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index 9068bcdde7a..9b550dc17cc 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -132,7 +132,6 @@ i965_FILES = \ intel_buffers.c \ intel_buffers.h \ intel_bufmgr_gem.c \ - intel_chipset.h \ intel_copy_image.c \ intel_extensions.c \ intel_fbo.c \ |