mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 15:11:16 +00:00
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>
This commit is contained in:
parent
c36c5736be
commit
a151427ed0
4 changed files with 13 additions and 13 deletions
|
@ -280,7 +280,7 @@ static irqreturn_t rtc_interrupt(int irq, void *dev_id)
|
|||
/*
|
||||
* sysctl-tuning infrastructure.
|
||||
*/
|
||||
static ctl_table rtc_table[] = {
|
||||
static struct ctl_table rtc_table[] = {
|
||||
{
|
||||
.procname = "max-user-freq",
|
||||
.data = &rtc_max_user_freq,
|
||||
|
@ -291,7 +291,7 @@ static ctl_table rtc_table[] = {
|
|||
{ }
|
||||
};
|
||||
|
||||
static ctl_table rtc_root[] = {
|
||||
static struct ctl_table rtc_root[] = {
|
||||
{
|
||||
.procname = "rtc",
|
||||
.mode = 0555,
|
||||
|
@ -300,7 +300,7 @@ static ctl_table rtc_root[] = {
|
|||
{ }
|
||||
};
|
||||
|
||||
static ctl_table dev_root[] = {
|
||||
static struct ctl_table dev_root[] = {
|
||||
{
|
||||
.procname = "dev",
|
||||
.mode = 0555,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue