linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Geert Uytterhoeven <geert@linux-m68k.org>
To: linux-kernel@vger.kernel.org
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	linuxppc-dev@lists.ozlabs.org
Subject: [PATCH 01/12] powerpc/windfarm: Remove superfluous name casts
Date: Tue, 12 Nov 2013 20:07:14 +0100	[thread overview]
Message-ID: <1384283245-9419-2-git-send-email-geert@linux-m68k.org> (raw)
In-Reply-To: <1384283245-9419-1-git-send-email-geert@linux-m68k.org>

wf_sensor.name is "const char *"

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: linuxppc-dev@lists.ozlabs.org
---
 drivers/macintosh/windfarm_lm75_sensor.c    |    2 +-
 drivers/macintosh/windfarm_max6690_sensor.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/macintosh/windfarm_lm75_sensor.c b/drivers/macintosh/windfarm_lm75_sensor.c
index 9ef32b3df91f..590214ba736c 100644
--- a/drivers/macintosh/windfarm_lm75_sensor.c
+++ b/drivers/macintosh/windfarm_lm75_sensor.c
@@ -133,7 +133,7 @@ static int wf_lm75_probe(struct i2c_client *client,
 	lm->inited = 0;
 	lm->ds1775 = ds1775;
 	lm->i2c = client;
-	lm->sens.name = (char *)name; /* XXX fix constness in structure */
+	lm->sens.name = name;
 	lm->sens.ops = &wf_lm75_ops;
 	i2c_set_clientdata(client, lm);
 
diff --git a/drivers/macintosh/windfarm_max6690_sensor.c b/drivers/macintosh/windfarm_max6690_sensor.c
index 945a25b2f31e..87e439b10318 100644
--- a/drivers/macintosh/windfarm_max6690_sensor.c
+++ b/drivers/macintosh/windfarm_max6690_sensor.c
@@ -95,7 +95,7 @@ static int wf_max6690_probe(struct i2c_client *client,
 	}
 
 	max->i2c = client;
-	max->sens.name = (char *)name; /* XXX fix constness in structure */
+	max->sens.name = name;
 	max->sens.ops = &wf_max6690_ops;
 	i2c_set_clientdata(client, max);
 
-- 
1.7.9.5


  reply	other threads:[~2013-11-12 20:13 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-12 19:07 [PATCH 00/12] Remove superfluous name casts Geert Uytterhoeven
2013-11-12 19:07 ` Geert Uytterhoeven [this message]
2013-11-12 19:07 ` [PATCH 02/12] mtd: " Geert Uytterhoeven
2013-11-14  1:06   ` Brian Norris
2013-11-12 19:07 ` [PATCH 03/12] mtd: pasemi_nand.c: Remove superfluous name cast Geert Uytterhoeven
2013-11-12 19:12   ` Olof Johansson
2013-11-14  1:08   ` Brian Norris
2013-11-12 19:07 ` [PATCH 04/12] PCI/portdrv: " Geert Uytterhoeven
2013-12-07 22:35   ` Bjorn Helgaas
2013-11-12 19:07 ` [PATCH 05/12] pcmcia: Remove superfluous name casts Geert Uytterhoeven
2013-11-12 19:07 ` [PATCH 06/12] staging: " Geert Uytterhoeven
2013-11-12 19:07 ` [PATCH 07/12] staging: r8188eu: Remove superfluous name cast Geert Uytterhoeven
2013-11-12 19:07 ` [PATCH 08/12] staging: usbip: " Geert Uytterhoeven
2013-11-12 19:07 ` [PATCH 09/12] usb: core: Remove superfluous name casts Geert Uytterhoeven
2013-11-12 19:07 ` [PATCH 10/12] mtd: ms02-nv: Remove superfluous name cast Geert Uytterhoeven
2013-11-14  1:09   ` Brian Norris
2013-11-12 19:07 ` [PATCH 11/12] usb: gadget: Remove superfluous name casts Geert Uytterhoeven
2013-11-12 19:07 ` [PATCH 12/12] usb: host: " Geert Uytterhoeven

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=1384283245-9419-2-git-send-email-geert@linux-m68k.org \
    --to=geert@linux-m68k.org \
    --cc=akpm@linux-foundation.org \
    --cc=benh@kernel.crashing.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).