diff options
author | Eric Moore <eric.moore@lsil.com> | 2006-07-11 19:34:01 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-07-13 09:32:09 -0400 |
commit | ba856d32f2cede67fd2a59a53bc662360f17c7b5 (patch) | |
tree | 790a9cd086302e86f249bdcdd489691f46013dd6 /drivers/message/fusion/mptbase.c | |
parent | 0ccdb007596642dae8d7b323127d8840939b844a (diff) |
[SCSI] mptfusion: misc fix's
* removing obsolete 1066, 1066E from Kconfig
* initializing aen_event_read_flag after host reset
* remove oem references
* remove obsolete mpt_pq_filter command line option
Signed-off-by: Eric Moore <Eric.Moore@lsil.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/message/fusion/mptbase.c')
-rw-r--r-- | drivers/message/fusion/mptbase.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c index af340674e1dd..29d0635cce1d 100644 --- a/drivers/message/fusion/mptbase.c +++ b/drivers/message/fusion/mptbase.c | |||
@@ -1054,9 +1054,8 @@ mpt_host_page_alloc(MPT_ADAPTER *ioc, pIOCInit_t ioc_init) | |||
1054 | 1054 | ||
1055 | dinitprintk((MYIOC_s_INFO_FMT | 1055 | dinitprintk((MYIOC_s_INFO_FMT |
1056 | "host_page_buffer @ %p, dma @ %x, sz=%d bytes\n", | 1056 | "host_page_buffer @ %p, dma @ %x, sz=%d bytes\n", |
1057 | ioc->name, | 1057 | ioc->name, ioc->HostPageBuffer, |
1058 | ioc->HostPageBuffer, | 1058 | (u32)ioc->HostPageBuffer_dma, |
1059 | ioc->HostPageBuffer_dma, | ||
1060 | host_page_buffer_sz)); | 1059 | host_page_buffer_sz)); |
1061 | ioc->alloc_total += host_page_buffer_sz; | 1060 | ioc->alloc_total += host_page_buffer_sz; |
1062 | ioc->HostPageBuffer_sz = host_page_buffer_sz; | 1061 | ioc->HostPageBuffer_sz = host_page_buffer_sz; |
@@ -1378,6 +1377,7 @@ mpt_attach(struct pci_dev *pdev, const struct pci_device_id *id) | |||
1378 | printk(KERN_WARNING MYNAM | 1377 | printk(KERN_WARNING MYNAM |
1379 | ": WARNING - %s did not initialize properly! (%d)\n", | 1378 | ": WARNING - %s did not initialize properly! (%d)\n", |
1380 | ioc->name, r); | 1379 | ioc->name, r); |
1380 | |||
1381 | list_del(&ioc->list); | 1381 | list_del(&ioc->list); |
1382 | if (ioc->alt_ioc) | 1382 | if (ioc->alt_ioc) |
1383 | ioc->alt_ioc->alt_ioc = NULL; | 1383 | ioc->alt_ioc->alt_ioc = NULL; |
@@ -2668,6 +2668,7 @@ SendIocInit(MPT_ADAPTER *ioc, int sleepFlag) | |||
2668 | dinitprintk((MYIOC_s_INFO_FMT "INFO - Wait IOC_OPERATIONAL state (cnt=%d)\n", | 2668 | dinitprintk((MYIOC_s_INFO_FMT "INFO - Wait IOC_OPERATIONAL state (cnt=%d)\n", |
2669 | ioc->name, count)); | 2669 | ioc->name, count)); |
2670 | 2670 | ||
2671 | ioc->aen_event_read_flag=0; | ||
2671 | return r; | 2672 | return r; |
2672 | } | 2673 | } |
2673 | 2674 | ||