1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-24 11:29:10 +00:00

Appened ull to a really large integer constant to fix build on i386

This commit is contained in:
Warner Losh 2006-08-18 00:01:29 +00:00
parent bfe1239a78
commit 39926f1ff3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=161428

View File

@ -2533,7 +2533,7 @@ ata_marvell_begin_transaction(struct ata_request *request)
/* fill in this request */
quadp[0] = (long)ch->dma->sg_bus & 0xffffffff;
quadp[1] = (ch->dma->sg_bus & 0xffffffff00000000) >> 32;
quadp[1] = (ch->dma->sg_bus & 0xffffffff00000000ull) >> 32;
wordp[4] = (request->flags & ATA_R_READ ? 0x01 : 0x00) | (tag<<1);
i = 10;