| | Subject | [PATCH 37/44] includecheck fix: include/linux, aio.h | | From | Jaswinder Singh Rajput <> | | Date | Wed, 08 Jul 2009 21:20:54 +0530 |
| |
fix the following 'make includecheck' warning:
include/linux/aio.h: linux/aio_abi.h is included more than once.
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com> --- include/linux/aio.h | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/include/linux/aio.h b/include/linux/aio.h index 47f7d93..aea219d 100644 --- a/include/linux/aio.h +++ b/include/linux/aio.h @@ -225,8 +225,6 @@ static inline void exit_aio(struct mm_struct *mm) { } #define io_wait_to_kiocb(wait) container_of(wait, struct kiocb, ki_wait) -#include <linux/aio_abi.h> - static inline struct kiocb *list_kiocb(struct list_head *h) { return list_entry(h, struct kiocb, ki_list); -- 1.6.0.6
|