From: Pat Gefre Date: Mon, 1 May 2006 19:16:08 +0000 (-0700) Subject: [PATCH] Altix: correct ioc3 port order X-Git-Tag: v2.6.16.20~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e211bbe2295ff89490f01d54c6300a8a58fac7c;p=thirdparty%2Fkernel%2Fstable.git [PATCH] Altix: correct ioc3 port order Currently loading the ioc3 as a module will cause the ports to be numbered in reverse order. This mod maintains the proper order of cards for port numbering. Signed-off-by: Patrick Gefre Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman Signed-off-by: Chris Wright --- diff --git a/drivers/sn/ioc3.c b/drivers/sn/ioc3.c index 93449a1a0065f..4bd05a007224d 100644 --- a/drivers/sn/ioc3.c +++ b/drivers/sn/ioc3.c @@ -677,7 +677,7 @@ static int ioc3_probe(struct pci_dev *pdev, const struct pci_device_id *pci_id) /* Track PCI-device specific data */ pci_set_drvdata(pdev, idd); down_write(&ioc3_devices_rwsem); - list_add(&idd->list, &ioc3_devices); + list_add_tail(&idd->list, &ioc3_devices); idd->id = ioc3_counter++; up_write(&ioc3_devices_rwsem);