diff options
author | Jan Kara <jack@suse.cz> | 2014-10-20 16:01:33 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2014-11-10 10:06:07 +0100 |
commit | 6bab3596bbede980c067eaeaf6a470c262888dac (patch) | |
tree | 87ff11c996d0fa7ce4bbb0c69d680edd76c000e2 /fs/quota/dquot.c | |
parent | 19858e7bdc63e00a401247a17d9f85949b48359d (diff) | |
download | op-kernel-dev-6bab3596bbede980c067eaeaf6a470c262888dac.zip op-kernel-dev-6bab3596bbede980c067eaeaf6a470c262888dac.tar.gz |
quota: Remove const from function declarations
We don't use const through VFS too much so just remove it from quota
function declarations.
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/quota/dquot.c')
-rw-r--r-- | fs/quota/dquot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c index a180b1d..b1910c9 100644 --- a/fs/quota/dquot.c +++ b/fs/quota/dquot.c @@ -1643,7 +1643,7 @@ EXPORT_SYMBOL(__dquot_alloc_space); /* * This operation can block, but only after everything is updated */ -int dquot_alloc_inode(const struct inode *inode) +int dquot_alloc_inode(struct inode *inode) { int cnt, ret = 0, index; struct dquot_warn warn[MAXQUOTAS]; @@ -1784,7 +1784,7 @@ EXPORT_SYMBOL(__dquot_free_space); /* * This operation can block, but only after everything is updated */ -void dquot_free_inode(const struct inode *inode) +void dquot_free_inode(struct inode *inode) { unsigned int cnt; struct dquot_warn warn[MAXQUOTAS]; |