Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 592749e4 authored by Joe Perches's avatar Joe Perches Committed by Linus Torvalds
Browse files

scsi: convert use of typedef ctl_table to struct ctl_table



This typedef is unnecessary and should just be removed.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent be424c63
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 },