Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tile: 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>

authored by

Joe Perches and committed by
Linus Torvalds
804bcaf7 2841efa6

+2 -2
+2 -2
arch/tile/kernel/proc.c
··· 113 113 * Support /proc/sys/tile directory 114 114 */ 115 115 116 - static ctl_table unaligned_subtable[] = { 116 + static struct ctl_table unaligned_subtable[] = { 117 117 { 118 118 .procname = "enabled", 119 119 .data = &unaligned_fixup, ··· 138 138 {} 139 139 }; 140 140 141 - static ctl_table unaligned_table[] = { 141 + static struct ctl_table unaligned_table[] = { 142 142 { 143 143 .procname = "unaligned_fixup", 144 144 .mode = 0555,