mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
arm busdma: Fix parameter types to exclusion_bounce_check
These are bus addresses not CPU virtual addresses. Reviewed by: andrew Sponsored by: University of Cambridge, Google, Inc. Differential Revision: https://reviews.freebsd.org/D44343 (cherry picked from commit 66658b0f2775824b2a80fb56ca15e6ceae2f8240)
This commit is contained in:
parent
85cdbae749
commit
f091b71838
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ SYSINIT(busdma, SI_SUB_KMEM+1, SI_ORDER_FIRST, busdma_init, NULL);
|
|||
* express, so we take a fast out.
|
||||
*/
|
||||
static int
|
||||
exclusion_bounce_check(vm_offset_t lowaddr, vm_offset_t highaddr)
|
||||
exclusion_bounce_check(bus_addr_t lowaddr, bus_addr_t highaddr)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue