mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 06:20:53 +07:00
scsi: 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>
This commit is contained in:
parent
be424c63aa
commit
592749e4d0
@ -12,7 +12,7 @@
|
||||
#include "scsi_priv.h"
|
||||
|
||||
|
||||
static ctl_table scsi_table[] = {
|
||||
static struct ctl_table scsi_table[] = {
|
||||
{ .procname = "logging_level",
|
||||
.data = &scsi_logging_level,
|
||||
.maxlen = sizeof(scsi_logging_level),
|
||||
@ -21,14 +21,14 @@ static ctl_table scsi_table[] = {
|
||||
{ }
|
||||
};
|
||||
|
||||
static ctl_table scsi_dir_table[] = {
|
||||
static struct ctl_table scsi_dir_table[] = {
|
||||
{ .procname = "scsi",
|
||||
.mode = 0555,
|
||||
.child = scsi_table },
|
||||
{ }
|
||||
};
|
||||
|
||||
static ctl_table scsi_root_table[] = {
|
||||
static struct ctl_table scsi_root_table[] = {
|
||||
{ .procname = "dev",
|
||||
.mode = 0555,
|
||||
.child = scsi_dir_table },
|
||||
|
Loading…
Reference in New Issue
Block a user