diff options
author | Joe Perches <joe@perches.com> | 2013-10-22 18:29:50 -0400 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2013-11-16 13:32:24 -0500 |
commit | f3a5e3e37e221d29ce611238a22ac61cf76c6614 (patch) | |
tree | ee749d87e24de18f9a0099af86b91857e3b70693 /drivers/infiniband | |
parent | ab626d1a68d1aee19a5c7d889b9fbeace6a92b41 (diff) |
IB/ucma: 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: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/core/ucma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/core/ucma.c b/drivers/infiniband/core/ucma.c index b0f189be543b..3f93093632c2 100644 --- a/drivers/infiniband/core/ucma.c +++ b/drivers/infiniband/core/ucma.c | |||
@@ -57,7 +57,7 @@ MODULE_LICENSE("Dual BSD/GPL"); | |||
57 | static unsigned int max_backlog = 1024; | 57 | static unsigned int max_backlog = 1024; |
58 | 58 | ||
59 | static struct ctl_table_header *ucma_ctl_table_hdr; | 59 | static struct ctl_table_header *ucma_ctl_table_hdr; |
60 | static ctl_table ucma_ctl_table[] = { | 60 | static struct ctl_table ucma_ctl_table[] = { |
61 | { | 61 | { |
62 | .procname = "max_backlog", | 62 | .procname = "max_backlog", |
63 | .data = &max_backlog, | 63 | .data = &max_backlog, |