Use outbound message register 0 instead of mailbox 7 in

aac_{rx,rkt}_get_fwstatus, as done in Adaptec's vendor driver as well as
the Linux drivers.

Submitted by:   jkim, from Adaptec's driver
This commit is contained in:
emaste 2009-02-18 01:36:20 +00:00
parent ffe883c13b
commit f48f569733
2 changed files with 6 additions and 2 deletions

View File

@ -2375,7 +2375,7 @@ aac_rx_get_fwstatus(struct aac_softc *sc)
{
fwprintf(sc, HBA_FLAGS_DBG_FUNCTION_ENTRY_B, "");
return(AAC_GETREG4(sc, AAC_RX_FWSTATUS));
return(AAC_GETREG4(sc, AAC_RX_OMR0));
}
static int
@ -2394,7 +2394,7 @@ aac_rkt_get_fwstatus(struct aac_softc *sc)
{
fwprintf(sc, HBA_FLAGS_DBG_FUNCTION_ENTRY_B, "");
return(AAC_GETREG4(sc, AAC_RKT_FWSTATUS));
return(AAC_GETREG4(sc, AAC_RKT_OMR0));
}
/*

View File

@ -1495,6 +1495,8 @@ enum {
* and other related adapters.
*/
#define AAC_RX_OMR0 0x18 /* outbound message register 0 */
#define AAC_RX_OMR1 0x1c /* outbound message register 1 */
#define AAC_RX_IDBR 0x20 /* inbound doorbell register */
#define AAC_RX_IISR 0x24 /* inbound interrupt status register */
#define AAC_RX_IIMR 0x28 /* inbound interrupt mask register */
@ -1512,6 +1514,8 @@ enum {
* Unsurprisingly, it's quite similar to the i960!
*/
#define AAC_RKT_OMR0 0x18 /* outbound message register 0 */
#define AAC_RKT_OMR1 0x1c /* outbound message register 1 */
#define AAC_RKT_IDBR 0x20 /* inbound doorbell register */
#define AAC_RKT_IISR 0x24 /* inbound interrupt status register */
#define AAC_RKT_IIMR 0x28 /* inbound interrupt mask register */