summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-04-23 08:27:55 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2014-04-23 14:16:02 +1000
commitcee9303d5c0c59a3698935bbaefefcd49b94f6c2 (patch)
treed43148ca15218911f45dddaf33ca2273d81eb620
parent89403f537b89a68baa0eb0b9c292d118d35fa99a (diff)
fscache: convert use of typedef ctl_table to struct ctl_table
This typedef is unnecessary and should just be removed. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r--fs/fscache/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fscache/main.c b/fs/fscache/main.c
index 7c27907e650c..5b2c174244b7 100644
--- a/fs/fscache/main.c
+++ b/fs/fscache/main.c
@@ -67,7 +67,7 @@ static int fscache_max_active_sysctl(struct ctl_table *table, int write,
return ret;
}
-ctl_table fscache_sysctls[] = {
+struct ctl_table fscache_sysctls[] = {
{
.procname = "object_max_active",
.data = &fscache_object_max_active,
@@ -87,7 +87,7 @@ ctl_table fscache_sysctls[] = {
{}
};
-ctl_table fscache_sysctls_root[] = {
+struct ctl_table fscache_sysctls_root[] = {
{
.procname = "fscache",
.mode = 0555,