All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joe Perches <joe@perches.com>
To: Jiri Kosina <trivial@kernel.org>
Cc: Russell King <linux@arm.linux.org.uk>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: [Trivial PATCH 01/33] arm: kernel: isa: Convert use of typedef ctl_table to struct ctl_table
Date: Thu, 13 Jun 2013 19:37:26 -0700	[thread overview]
Message-ID: <e78cf3653228ef35505d50e94c29e71650903a17.1371177118.git.joe@perches.com> (raw)
In-Reply-To: <cover.1371177118.git.joe@perches.com>

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
---
 arch/arm/kernel/isa.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/kernel/isa.c b/arch/arm/kernel/isa.c
index 3464859..9d1cf71 100644
--- a/arch/arm/kernel/isa.c
+++ b/arch/arm/kernel/isa.c
@@ -20,7 +20,7 @@
 
 static unsigned int isa_membase, isa_portbase, isa_portshift;
 
-static ctl_table ctl_isa_vars[4] = {
+static struct ctl_table ctl_isa_vars[4] = {
 	{
 		.procname	= "membase",
 		.data		= &isa_membase, 
@@ -44,7 +44,7 @@ static ctl_table ctl_isa_vars[4] = {
 
 static struct ctl_table_header *isa_sysctl_header;
 
-static ctl_table ctl_isa[2] = {
+static struct ctl_table ctl_isa[2] = {
 	{
 		.procname	= "isa",
 		.mode		= 0555,
@@ -52,7 +52,7 @@ static ctl_table ctl_isa[2] = {
 	}, {}
 };
 
-static ctl_table ctl_bus[2] = {
+static struct ctl_table ctl_bus[2] = {
 	{
 		.procname	= "bus",
 		.mode		= 0555,
-- 
1.8.1.2.459.gbcd45b4.dirty


WARNING: multiple messages have this Message-ID (diff)
From: joe@perches.com (Joe Perches)
To: linux-arm-kernel@lists.infradead.org
Subject: [Trivial PATCH 01/33] arm: kernel: isa: Convert use of typedef ctl_table to struct ctl_table
Date: Thu, 13 Jun 2013 19:37:26 -0700	[thread overview]
Message-ID: <e78cf3653228ef35505d50e94c29e71650903a17.1371177118.git.joe@perches.com> (raw)
In-Reply-To: <cover.1371177118.git.joe@perches.com>

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
---
 arch/arm/kernel/isa.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/kernel/isa.c b/arch/arm/kernel/isa.c
index 3464859..9d1cf71 100644
--- a/arch/arm/kernel/isa.c
+++ b/arch/arm/kernel/isa.c
@@ -20,7 +20,7 @@
 
 static unsigned int isa_membase, isa_portbase, isa_portshift;
 
-static ctl_table ctl_isa_vars[4] = {
+static struct ctl_table ctl_isa_vars[4] = {
 	{
 		.procname	= "membase",
 		.data		= &isa_membase, 
@@ -44,7 +44,7 @@ static ctl_table ctl_isa_vars[4] = {
 
 static struct ctl_table_header *isa_sysctl_header;
 
-static ctl_table ctl_isa[2] = {
+static struct ctl_table ctl_isa[2] = {
 	{
 		.procname	= "isa",
 		.mode		= 0555,
@@ -52,7 +52,7 @@ static ctl_table ctl_isa[2] = {
 	}, {}
 };
 
-static ctl_table ctl_bus[2] = {
+static struct ctl_table ctl_bus[2] = {
 	{
 		.procname	= "bus",
 		.mode		= 0555,
-- 
1.8.1.2.459.gbcd45b4.dirty

  reply	other threads:[~2013-06-14  2:38 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-14  2:37 [Trivial PATCH 00/33] Remove uses of typedef ctl_table Joe Perches
2013-06-14  2:37 ` Joe Perches
2013-06-14  2:37 ` Joe Perches
2013-06-14  2:37 ` Joe Perches
2013-06-14  2:37 ` Joe Perches
2013-06-14  2:37 ` Joe Perches
2013-06-14  2:37 ` Joe Perches
2013-06-14  2:37 ` Joe Perches [this message]
2013-06-14  2:37   ` [Trivial PATCH 01/33] arm: kernel: isa: Convert use of typedef ctl_table to struct ctl_table Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 02/33] frv: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 03/33] ia64: crash: " Joe Perches
2013-06-14  2:37   ` Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 04/33] mips: lasat: sysctl: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 05/33] powerpc: idle: " Joe Perches
2013-06-14  2:37   ` Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 06/33] s390: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 07/33] tile: proc: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 08/33] x86: vdso: " Joe Perches
2013-06-19 18:43   ` [tip:x86/asm] x86/vdso: " tip-bot for Joe Perches
2013-06-19 18:47     ` H. Peter Anvin
2013-06-19 19:05       ` Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 09/33] cdrom: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 10/33] char: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 11/33] infiniband: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 12/33] macintosh: " Joe Perches
2013-06-14  2:37   ` Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 13/33] md: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 14/33] sgi: xpc: " Joe Perches
2013-06-14  2:53   ` Robin Holt
2013-06-14  2:37 ` [Trivial PATCH 15/33] parport: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 16/33] scsi_sysctl: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 17/33] coda: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 18/33] fscache: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 19/33] lockd: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 20/33] nfs: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 21/33] inotify: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 22/33] ntfs: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 23/33] ocfs2: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 24/33] quota: " Joe Perches
2013-06-21 12:59   ` Jan Kara
2013-06-14  2:37 ` [Trivial PATCH 25/33] xfs: " Joe Perches
2013-06-14  2:37   ` Joe Perches
2013-06-14  5:21   ` Dave Chinner
2013-06-14  5:21     ` Dave Chinner
2013-06-14  5:33     ` Joe Perches
2013-06-14  5:33       ` Joe Perches
2013-06-14  6:18       ` Dave Chinner
2013-06-14  6:18         ` Dave Chinner
2013-06-17 22:39         ` Ben Myers
2013-06-17 22:39           ` Ben Myers
2013-06-14  2:37 ` [Trivial PATCH 26/33] fs: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 27/33] key: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 28/33] ipv6: " Joe Perches
2013-06-20  6:18   ` David Miller
2013-06-14  2:37 ` [Trivial PATCH 29/33] ndisc: " Joe Perches
2013-06-20  6:18   ` David Miller
2013-06-14  2:37 ` [Trivial PATCH 30/33] ipc: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 31/33] sysctl: " Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 32/33] mm: " Joe Perches
2013-06-14  2:37   ` Joe Perches
2013-06-14  2:37 ` [Trivial PATCH 33/33] security: keys: " Joe Perches
2013-06-14  8:57 ` [Trivial PATCH 02/33] frv: " David Howells

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e78cf3653228ef35505d50e94c29e71650903a17.1371177118.git.joe@perches.com \
    --to=joe@perches.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=trivial@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.