aic79xx.c:
Use the special LUNLEN_SINGLE_LEVEL constant for post Rev A4 hardware for single byte luns. Without this change, Rev B hardware would place the single byte of lun data in byte 0 of the lun structure when it should be in byte 1. Since there are few if any devices on the market that support multiple luns in target mode, the corrupted lun field (which was only corrupted for non-zero luns) wasn't hurting us. Approved by: re (rwatson)
This commit is contained in:
parent
6ee007e145
commit
95c9929a3b
@ -37,7 +37,7 @@
|
||||
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGES.
|
||||
*
|
||||
* $Id: //depot/aic7xxx/aic7xxx/aic79xx.c#193 $
|
||||
* $Id: aic79xx.c,v 1.16 2003/05/26 21:43:29 gibbs Exp $
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
@ -6174,7 +6174,7 @@ ahd_chip_init(struct ahd_softc *ahd)
|
||||
ahd_outb(ahd, LUNLEN,
|
||||
sizeof(ahd->next_queued_hscb->pkt_long_lun) - 1);
|
||||
} else {
|
||||
ahd_outb(ahd, LUNLEN, sizeof(ahd->next_queued_hscb->lun) - 1);
|
||||
ahd_outb(ahd, LUNLEN, LUNLEN_SINGLE_LEVEL_LUN);
|
||||
}
|
||||
ahd_outb(ahd, CDBLIMIT, SCB_CDB_LEN_PTR - 1);
|
||||
ahd_outb(ahd, MAXCMD, 0xFF);
|
||||
|
Loading…
Reference in New Issue
Block a user