mptfc.c (800f65bba8d2030b3fef62850e203f9f176625a8) | mptfc.c (213aaca3e5727f3eb56002b04a1405db34a54ed8) |
---|---|
1/* 2 * linux/drivers/message/fusion/mptfc.c 3 * For use with LSI PCI chip/adapter(s) 4 * running LSI Fusion MPT (Message Passing Technology) firmware. 5 * 6 * Copyright (c) 1999-2008 LSI Corporation 7 * (mailto:DL-MPTFusionLinux@lsi.com) 8 * --- 1458 unchanged lines hidden (view full) --- 1467 mptfc_dev_loss_tmo = MPTFC_DEV_LOSS_TMO; 1468 1469 mptfc_transport_template = 1470 fc_attach_transport(&mptfc_transport_functions); 1471 1472 if (!mptfc_transport_template) 1473 return -ENODEV; 1474 | 1/* 2 * linux/drivers/message/fusion/mptfc.c 3 * For use with LSI PCI chip/adapter(s) 4 * running LSI Fusion MPT (Message Passing Technology) firmware. 5 * 6 * Copyright (c) 1999-2008 LSI Corporation 7 * (mailto:DL-MPTFusionLinux@lsi.com) 8 * --- 1458 unchanged lines hidden (view full) --- 1467 mptfc_dev_loss_tmo = MPTFC_DEV_LOSS_TMO; 1468 1469 mptfc_transport_template = 1470 fc_attach_transport(&mptfc_transport_functions); 1471 1472 if (!mptfc_transport_template) 1473 return -ENODEV; 1474 |
1475 mptfcDoneCtx = mpt_register(mptscsih_io_done, MPTFC_DRIVER); 1476 mptfcTaskCtx = mpt_register(mptscsih_taskmgmt_complete, MPTFC_DRIVER); 1477 mptfcInternalCtx = mpt_register(mptscsih_scandv_complete, MPTFC_DRIVER); | 1475 mptfcDoneCtx = mpt_register(mptscsih_io_done, MPTFC_DRIVER, 1476 "mptscsih_scandv_complete"); 1477 mptfcTaskCtx = mpt_register(mptscsih_taskmgmt_complete, MPTFC_DRIVER, 1478 "mptscsih_scandv_complete"); 1479 mptfcInternalCtx = mpt_register(mptscsih_scandv_complete, MPTFC_DRIVER, 1480 "mptscsih_scandv_complete"); |
1478 1479 mpt_event_register(mptfcDoneCtx, mptfc_event_process); 1480 mpt_reset_register(mptfcDoneCtx, mptfc_ioc_reset); 1481 1482 error = pci_register_driver(&mptfc_driver); 1483 if (error) 1484 fc_release_transport(mptfc_transport_template); 1485 --- 68 unchanged lines hidden --- | 1481 1482 mpt_event_register(mptfcDoneCtx, mptfc_event_process); 1483 mpt_reset_register(mptfcDoneCtx, mptfc_ioc_reset); 1484 1485 error = pci_register_driver(&mptfc_driver); 1486 if (error) 1487 fc_release_transport(mptfc_transport_template); 1488 --- 68 unchanged lines hidden --- |