diff options
author | Jeff Liu <jeff.liu@oracle.com> | 2012-05-28 23:40:17 +0800 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2012-07-09 12:03:11 +0200 |
commit | f3da93105b6963a2be2a56dee27fdc88ac4ad769 (patch) | |
tree | c29df87865f025284a2fe6aaeb426f4859fb5253 /fs/quota/dquot.c | |
parent | 8c84bf4166a4698296342841a549bbee03860ac0 (diff) |
quota: fix checkpatch.pl warning by replacing <asm/uaccess.h> with <linux/uaccess.h>
checkpatch.pl warns:
"WARNING: Use #include <linux/uaccess.h> instead of <asm/uaccess.h>"
Below patch fixes it.
Signed-off-by: Jie Liu <jeff.liu@oracle.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/quota/dquot.c')
-rw-r--r-- | fs/quota/dquot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c index 10cbe841cb7..0c541dcbdf0 100644 --- a/fs/quota/dquot.c +++ b/fs/quota/dquot.c @@ -78,7 +78,7 @@ #include <linux/quotaops.h> #include "../internal.h" /* ugh */ -#include <asm/uaccess.h> +#include <linux/uaccess.h> /* * There are three quota SMP locks. dq_list_lock protects all lists with quotas |