mptlan.c (e37c83c06c2690157a989df40dc99a6b61c9ea15) mptlan.c (213aaca3e5727f3eb56002b04a1405db34a54ed8)
1/*
2 * linux/drivers/message/fusion/mptlan.c
3 * IP Over Fibre Channel device driver.
4 * For use with LSI Fibre Channel PCI chip/adapters
5 * running LSI Fusion MPT (Message Passing Technology) firmware.
6 *
7 * Copyright (c) 2000-2008 LSI Corporation
8 * (mailto:DL-MPTFusionLinux@lsi.com)

--- 1438 unchanged lines hidden (view full) ---

1447 .probe = mptlan_probe,
1448 .remove = mptlan_remove,
1449};
1450
1451static int __init mpt_lan_init (void)
1452{
1453 show_mptmod_ver(LANAME, LANVER);
1454
1/*
2 * linux/drivers/message/fusion/mptlan.c
3 * IP Over Fibre Channel device driver.
4 * For use with LSI Fibre Channel PCI chip/adapters
5 * running LSI Fusion MPT (Message Passing Technology) firmware.
6 *
7 * Copyright (c) 2000-2008 LSI Corporation
8 * (mailto:DL-MPTFusionLinux@lsi.com)

--- 1438 unchanged lines hidden (view full) ---

1447 .probe = mptlan_probe,
1448 .remove = mptlan_remove,
1449};
1450
1451static int __init mpt_lan_init (void)
1452{
1453 show_mptmod_ver(LANAME, LANVER);
1454
1455 if ((LanCtx = mpt_register(lan_reply, MPTLAN_DRIVER)) <= 0) {
1455 LanCtx = mpt_register(lan_reply, MPTLAN_DRIVER,
1456 "lan_reply");
1457 if (LanCtx <= 0) {
1456 printk (KERN_ERR MYNAM ": Failed to register with MPT base driver\n");
1457 return -EBUSY;
1458 }
1459
1460 dlprintk((KERN_INFO MYNAM ": assigned context of %d\n", LanCtx));
1461
1462 if (mpt_reset_register(LanCtx, mpt_lan_ioc_reset)) {
1463 printk(KERN_ERR MYNAM ": Eieee! unable to register a reset "

--- 79 unchanged lines hidden ---
1458 printk (KERN_ERR MYNAM ": Failed to register with MPT base driver\n");
1459 return -EBUSY;
1460 }
1461
1462 dlprintk((KERN_INFO MYNAM ": assigned context of %d\n", LanCtx));
1463
1464 if (mpt_reset_register(LanCtx, mpt_lan_ioc_reset)) {
1465 printk(KERN_ERR MYNAM ": Eieee! unable to register a reset "

--- 79 unchanged lines hidden ---