public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gcc4 fixes for sn2
@ 2005-01-10 21:52 Jesse Barnes
  0 siblings, 0 replies; only message in thread
From: Jesse Barnes @ 2005-01-10 21:52 UTC (permalink / raw)
  To: linux-ia64

[-- Attachment #1: Type: text/plain, Size: 354 bytes --]

This patch is needed since "warning: use of cast expressions as lvalues is 
deprecated" turned into an error in gcc4.  We can use the convenience macros 
for read access and explicit assignments for initialization.  I thought about 
using Alexandre's fixes, but this seemed a little simpler.

Signed-off-by: Jesse Barnes <jbarnes@sgi.com>

Thanks,
Jesse

[-- Attachment #2: sn2-io-init-gcc4-fixes.patch --]
[-- Type: text/plain, Size: 849 bytes --]

===== arch/ia64/sn/kernel/io_init.c 1.7 vs edited =====
--- 1.7/arch/ia64/sn/kernel/io_init.c	2005-01-07 21:44:03 -08:00
+++ edited/arch/ia64/sn/kernel/io_init.c	2005-01-10 13:50:14 -08:00
@@ -201,7 +201,7 @@
 	struct pci_dev *host_pci_dev;
 	int status = 0;
 
-	SN_PCIDEV_INFO(dev) = kmalloc(sizeof(struct pcidev_info), GFP_KERNEL);
+	dev->sysdata = kmalloc(sizeof(struct pcidev_info), GFP_KERNEL);
 	if (SN_PCIDEV_INFO(dev) <= 0)
 		BUG();		/* Cannot afford to run out of memory */
 	memset(SN_PCIDEV_INFO(dev), 0, sizeof(struct pcidev_info));
@@ -309,8 +309,8 @@
 	 * after this point.
 	 */
 
-	PCI_CONTROLLER(bus) = controller;
-	SN_PCIBUS_BUSSOFT(bus) = provider_soft;
+	bus->sysdata = controller;
+	PCI_CONTROLLER(bus)->platform_data = provider_soft;
 
 	nasid = NASID_GET(SN_PCIBUS_BUSSOFT(bus)->bs_base);
 	cnode = nasid_to_cnodeid(nasid);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-01-10 21:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-10 21:52 [PATCH] gcc4 fixes for sn2 Jesse Barnes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox