aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-06-06 17:37:54 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-06-06 19:08:15 -0400
commit37649de2390b0c6668c6621e0a69d59c7d23022f (patch)
treed1b873b3de1532dbff17337a7b41ce8b4a17c6d1
parent119ce5c8b99cd6b874cec58c81ce9b56e52160c3 (diff)
arm: 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> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--arch/arm/kernel/isa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/kernel/isa.c b/arch/arm/kernel/isa.c
index 346485910732..9d1cf7156895 100644
--- a/arch/arm/kernel/isa.c
+++ b/arch/arm/kernel/isa.c
@@ -20,7 +20,7 @@
20 20
21static unsigned int isa_membase, isa_portbase, isa_portshift; 21static unsigned int isa_membase, isa_portbase, isa_portshift;
22 22
23static ctl_table ctl_isa_vars[4] = { 23static struct ctl_table ctl_isa_vars[4] = {
24 { 24 {
25 .procname = "membase", 25 .procname = "membase",
26 .data = &isa_membase, 26 .data = &isa_membase,
@@ -44,7 +44,7 @@ static ctl_table ctl_isa_vars[4] = {
44 44
45static struct ctl_table_header *isa_sysctl_header; 45static struct ctl_table_header *isa_sysctl_header;
46 46
47static ctl_table ctl_isa[2] = { 47static struct ctl_table ctl_isa[2] = {
48 { 48 {
49 .procname = "isa", 49 .procname = "isa",
50 .mode = 0555, 50 .mode = 0555,
@@ -52,7 +52,7 @@ static ctl_table ctl_isa[2] = {
52 }, {} 52 }, {}
53}; 53};
54 54
55static ctl_table ctl_bus[2] = { 55static struct ctl_table ctl_bus[2] = {
56 { 56 {
57 .procname = "bus", 57 .procname = "bus",
58 .mode = 0555, 58 .mode = 0555,