From: Pat Gefre 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 --- drivers/sn/ioc3.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/sn/ioc3.c~altix-correct-ioc3-port-order drivers/sn/ioc3.c --- devel/drivers/sn/ioc3.c~altix-correct-ioc3-port-order 2006-04-28 23:48:57.000000000 -0700 +++ devel-akpm/drivers/sn/ioc3.c 2006-04-28 23:48:57.000000000 -0700 @@ -678,7 +678,7 @@ static int ioc3_probe(struct pci_dev *pd /* 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); _