drm: Remove duplicate include

Message ID 1639031157-96155-1-git-send-email-jiapeng.chong@linux.alibaba.com (mailing list archive)
State Not Applicable, archived
Headers
Series drm: Remove duplicate include |

Commit Message

Jiapeng Chong Dec. 9, 2021, 6:25 a.m. UTC
  Clean up the following includecheck warning:

./drivers/gpu/drm/drm_gem_shmem_helper.c: linux/module.h is included
more than once.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
 drivers/gpu/drm/drm_gem_shmem_helper.c | 1 -
 1 file changed, 1 deletion(-)
  

Patch

diff --git a/drivers/gpu/drm/drm_gem_shmem_helper.c b/drivers/gpu/drm/drm_gem_shmem_helper.c
index 62192411..7915047 100644
--- a/drivers/gpu/drm/drm_gem_shmem_helper.c
+++ b/drivers/gpu/drm/drm_gem_shmem_helper.c
@@ -10,7 +10,6 @@ 
 #include <linux/shmem_fs.h>
 #include <linux/slab.h>
 #include <linux/vmalloc.h>
-#include <linux/module.h>
 
 #ifdef CONFIG_X86
 #include <asm/set_memory.h>