Commit 3798162e authored by Brent Casavant's avatar Brent Casavant Committed by Chris Wright

[PATCH] Altix: correct ioc4 port order

Currently loading the ioc4 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: default avatarBrent Casavant <bcasavan@sgi.com>
Cc: Pat Gefre <pfg@sgi.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: default avatarChris Wright <chrisw@sous-sol.org>
parent b743097c
...@@ -313,7 +313,7 @@ ioc4_probe(struct pci_dev *pdev, const struct pci_device_id *pci_id) ...@@ -313,7 +313,7 @@ ioc4_probe(struct pci_dev *pdev, const struct pci_device_id *pci_id)
idd->idd_serial_data = NULL; idd->idd_serial_data = NULL;
pci_set_drvdata(idd->idd_pdev, idd); pci_set_drvdata(idd->idd_pdev, idd);
down_write(&ioc4_devices_rwsem); down_write(&ioc4_devices_rwsem);
list_add(&idd->idd_list, &ioc4_devices); list_add_tail(&idd->idd_list, &ioc4_devices);
up_write(&ioc4_devices_rwsem); up_write(&ioc4_devices_rwsem);
/* Add this IOC4 to all submodules */ /* Add this IOC4 to all submodules */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment