diff options
author | Thomas Zimmermann <tzimmermann@suse.de> | 2019-12-03 13:04:05 +0300 |
---|---|---|
committer | Thomas Zimmermann <tzimmermann@suse.de> | 2019-12-05 10:45:01 +0300 |
commit | 95f02279a7087cffc935ebdc25cf4ffa8c14252c (patch) | |
tree | 1a526458fbe3dea0a42e2aeadbbd00b9334c4ab9 /drivers/gpu/drm/tdfx | |
parent | 528ea54fb0a806cb3136d46b157fd65360d0f6b4 (diff) | |
download | linux-95f02279a7087cffc935ebdc25cf4ffa8c14252c.tar.xz |
drm/tdfx: Don't include <drm/drm_pci.h>
Including <drm/drm_pci.h> is unnecessary in most cases. Replace
these instances.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191203100406.9674-12-tzimmermann@suse.de
Diffstat (limited to 'drivers/gpu/drm/tdfx')
-rw-r--r-- | drivers/gpu/drm/tdfx/tdfx_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tdfx/tdfx_drv.c b/drivers/gpu/drm/tdfx/tdfx_drv.c index c243af156ee7..ab699bf0ac5c 100644 --- a/drivers/gpu/drm/tdfx/tdfx_drv.c +++ b/drivers/gpu/drm/tdfx/tdfx_drv.c @@ -31,12 +31,12 @@ */ #include <linux/module.h> +#include <linux/pci.h> #include <drm/drm_drv.h> #include <drm/drm_file.h> #include <drm/drm_ioctl.h> #include <drm/drm_legacy.h> -#include <drm/drm_pci.h> #include <drm/drm_pciids.h> #include "tdfx_drv.h" |