mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Appened ull to a really large integer constant to fix build on i386
This commit is contained in:
parent
bfe1239a78
commit
39926f1ff3
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue