[PATCH] cy82c693: fix build for CONFIG_HOTPLUG=n

Previous thread: [PATCH 1/4] stringbuf: A string buffer implementation by Matthew Wilcox on Tuesday, October 23, 2007 - 5:12 pm. (22 messages)

Next thread: [PATCH] hpt366: fix build for CONFIG_HOTPLUG=n by Bartlomiej Zolnierkiewicz on Tuesday, October 23, 2007 - 4:59 pm. (1 message)
To: <linux-ide@...>
Cc: <linux-kernel@...>, Avuton Olrich <avuton@...>, Randy Dunlap <randy.dunlap@...>
Date: Tuesday, October 23, 2007 - 4:57 pm

It turns out that const and __{dev}initdata cannot be mixed currently.

This patch workarounds the problem by removing __devinitdata tag from 'primary'
variable (which makes 'primary' to be moved from .init.data to .bss section).
Now all __devinitdata data in cy82c693 host driver are read-only so it builds
again (driver's .init.data section gets marked as READONLY).

While at it:

* Move 'primary' variable to its only user, init_iops_cy82c693().

* Bump driver version.

Cc: "Avuton Olrich" <avuton@gmail.com>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
Even if we decide to revert commit 8562043606430185cad26d085d46adcc7ad67fd1
later it is worth to have the (independent) changes contained in this patch.

drivers/ide/pci/cy82c693.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Index: b/drivers/ide/pci/cy82c693.c
===================================================================
--- a/drivers/ide/pci/cy82c693.c
+++ b/drivers/ide/pci/cy82c693.c
@@ -1,5 +1,5 @@
/*
- * linux/drivers/ide/pci/cy82c693.c Version 0.41 Aug 27, 2007
+ * linux/drivers/ide/pci/cy82c693.c Version 0.42 Oct 23, 2007
*
* Copyright (C) 1998-2000 Andreas S. Krebs (akrebs@altavista.net), Maintainer
* Copyright (C) 1998-2002 Andre Hedrick <andre@linux-ide.org>, Integrator
@@ -436,10 +436,10 @@ static void __devinit init_hwif_cy82c693
hwif->ide_dma_on = &cy82c693_ide_dma_on;
}

-static __devinitdata ide_hwif_t *primary;
-
static void __devinit init_iops_cy82c693(ide_hwif_t *hwif)
{
+ static ide_hwif_t *primary;
+
if (PCI_FUNC(hwif->pci_dev->devfn) == 1)
primary = hwif;
else {
-

Previous thread: [PATCH 1/4] stringbuf: A string buffer implementation by Matthew Wilcox on Tuesday, October 23, 2007 - 5:12 pm. (22 messages)

Next thread: [PATCH] hpt366: fix build for CONFIG_HOTPLUG=n by Bartlomiej Zolnierkiewicz on Tuesday, October 23, 2007 - 4:59 pm. (1 message)