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

ia64: 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
2841efa6 37649de2

+5 -5
+2 -2
arch/ia64/kernel/crash.c
··· 237 237 } 238 238 239 239 #ifdef CONFIG_SYSCTL 240 - static ctl_table kdump_ctl_table[] = { 240 + static struct ctl_table kdump_ctl_table[] = { 241 241 { 242 242 .procname = "kdump_on_init", 243 243 .data = &kdump_on_init, ··· 255 255 { } 256 256 }; 257 257 258 - static ctl_table sys_table[] = { 258 + static struct ctl_table sys_table[] = { 259 259 { 260 260 .procname = "kernel", 261 261 .mode = 0555,
+3 -3
arch/ia64/kernel/perfmon.c
··· 521 521 pfm_sysctl_t pfm_sysctl; 522 522 EXPORT_SYMBOL(pfm_sysctl); 523 523 524 - static ctl_table pfm_ctl_table[]={ 524 + static struct ctl_table pfm_ctl_table[] = { 525 525 { 526 526 .procname = "debug", 527 527 .data = &pfm_sysctl.debug, ··· 552 552 }, 553 553 {} 554 554 }; 555 - static ctl_table pfm_sysctl_dir[] = { 555 + static struct ctl_table pfm_sysctl_dir[] = { 556 556 { 557 557 .procname = "perfmon", 558 558 .mode = 0555, ··· 560 560 }, 561 561 {} 562 562 }; 563 - static ctl_table pfm_sysctl_root[] = { 563 + static struct ctl_table pfm_sysctl_root[] = { 564 564 { 565 565 .procname = "kernel", 566 566 .mode = 0555,