Skip to content

Commit

Permalink
tile: convert use of typedef ctl_table to struct ctl_table
Browse files Browse the repository at this point in the history
This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
JoePerches authored and torvalds committed Jun 6, 2014
1 parent 2841efa commit 804bcaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/tile/kernel/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ arch_initcall(proc_tile_init);
* Support /proc/sys/tile directory
*/

static ctl_table unaligned_subtable[] = {
static struct ctl_table unaligned_subtable[] = {
{
.procname = "enabled",
.data = &unaligned_fixup,
Expand All @@ -138,7 +138,7 @@ static ctl_table unaligned_subtable[] = {
{}
};

static ctl_table unaligned_table[] = {
static struct ctl_table unaligned_table[] = {
{
.procname = "unaligned_fixup",
.mode = 0555,
Expand Down

0 comments on commit 804bcaf

Please sign in to comment.