diff options
author | Joe Perches <joe@perches.com> | 2013-06-13 22:37:35 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-17 19:43:08 -0400 |
commit | a151427ed086952cc28f1d5f1cda84c33e48e358 (patch) | |
tree | 55ebbc00fc8fcbc48036722f500fec99161f8eb2 /drivers/char/hpet.c | |
parent | c36c5736be5cc638db7659093bf8c2c7f48c5000 (diff) |
char: 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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char/hpet.c')
-rw-r--r-- | drivers/char/hpet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c index d784650d14f0..448ce5e29c56 100644 --- a/drivers/char/hpet.c +++ b/drivers/char/hpet.c | |||
@@ -725,7 +725,7 @@ static int hpet_is_known(struct hpet_data *hdp) | |||
725 | return 0; | 725 | return 0; |
726 | } | 726 | } |
727 | 727 | ||
728 | static ctl_table hpet_table[] = { | 728 | static struct ctl_table hpet_table[] = { |
729 | { | 729 | { |
730 | .procname = "max-user-freq", | 730 | .procname = "max-user-freq", |
731 | .data = &hpet_max_freq, | 731 | .data = &hpet_max_freq, |
@@ -736,7 +736,7 @@ static ctl_table hpet_table[] = { | |||
736 | {} | 736 | {} |
737 | }; | 737 | }; |
738 | 738 | ||
739 | static ctl_table hpet_root[] = { | 739 | static struct ctl_table hpet_root[] = { |
740 | { | 740 | { |
741 | .procname = "hpet", | 741 | .procname = "hpet", |
742 | .maxlen = 0, | 742 | .maxlen = 0, |
@@ -746,7 +746,7 @@ static ctl_table hpet_root[] = { | |||
746 | {} | 746 | {} |
747 | }; | 747 | }; |
748 | 748 | ||
749 | static ctl_table dev_root[] = { | 749 | static struct ctl_table dev_root[] = { |
750 | { | 750 | { |
751 | .procname = "dev", | 751 | .procname = "dev", |
752 | .maxlen = 0, | 752 | .maxlen = 0, |