Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

headers_check fix: linux/auto_fs.h

fix the following 'make headers_check' warnings:

usr/include/linux/auto_fs.h:17: include of <linux/types.h> is preferred over <asm/types.h>

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>

+1 -2
+1 -2
include/linux/auto_fs.h
··· 14 14 #ifndef _LINUX_AUTO_FS_H 15 15 #define _LINUX_AUTO_FS_H 16 16 17 + #include <linux/types.h> 17 18 #ifdef __KERNEL__ 18 19 #include <linux/fs.h> 19 20 #include <linux/limits.h> 20 - #include <linux/types.h> 21 21 #include <linux/ioctl.h> 22 22 #else 23 - #include <asm/types.h> 24 23 #include <sys/ioctl.h> 25 24 #endif /* __KERNEL__ */ 26 25