linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [IDE] Fix build bug
@ 2007-10-25 13:53 Ralf Baechle
  2007-10-25 14:13 ` Sam Ravnborg
  2007-10-25 21:41 ` Bartlomiej Zolnierkiewicz
  0 siblings, 2 replies; 13+ messages in thread
From: Ralf Baechle @ 2007-10-25 13:53 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz, Andrew Morton, linux-kernel, linux-ide,
	linux-mips

  CC      drivers/ide/pci/generic.o
drivers/ide/pci/generic.c:52: error: __setup_str_ide_generic_all_on causes a
+section type conflict

This sort of build error is becoming a regular issue.  Either all or non
of the elements that go into a particular section of a compilation unit
need to be const.  Or an error may result such as in this case if
CONFIG_HOTPLUG is unset.

Maybe worth a check in checkpatch.pl - but certainly gcc's interolerance
is also being less than helpful here.

---
 drivers/ide/pci/generic.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/ide/pci/generic.c b/drivers/ide/pci/generic.c
index f44d708..0047684 100644
--- a/drivers/ide/pci/generic.c
+++ b/drivers/ide/pci/generic.c
@@ -67,7 +67,7 @@ MODULE_PARM_DESC(all_generic_ide, "IDE generic will claim all unknown PCI IDE st
 		.udma_mask	= ATA_UDMA6, \
 	}
 
-static const struct ide_port_info generic_chipsets[] __devinitdata = {
+static struct ide_port_info generic_chipsets[] __devinitdata = {
 	/*  0 */ DECLARE_GENERIC_PCI_DEV("Unknown",	0),
 
 	{	/* 1 */

^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2007-11-02 12:35 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-25 13:53 [IDE] Fix build bug Ralf Baechle
2007-10-25 14:13 ` Sam Ravnborg
2007-10-25 14:13   ` Ralf Baechle
2007-10-25 14:47   ` Maciej W. Rozycki
2007-10-25 16:05     ` Ralf Baechle
2007-10-25 17:12       ` Maciej W. Rozycki
2007-10-25 21:52   ` Bartlomiej Zolnierkiewicz
2007-10-25 21:41 ` Bartlomiej Zolnierkiewicz
2007-10-30 11:34   ` Denys Vlasenko
2007-10-30 12:41     ` Ralf Baechle
2007-10-30 20:30       ` Bartlomiej Zolnierkiewicz
2007-11-01 18:43       ` Denys Vlasenko
2007-11-02 12:34         ` Ralf Baechle

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).