mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-31 12:13:10 +00:00
Eliminate a compiler warning about extraneous parens.
This commit is contained in:
parent
ae7accbc18
commit
2d1bca2d2f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=257203
@ -807,7 +807,7 @@ _bus_dmamap_count_phys(bus_dma_tag_t dmat, bus_dmamap_t map, vm_paddr_t buf,
|
||||
bus_addr_t curaddr;
|
||||
bus_size_t sgsize;
|
||||
|
||||
if ((map->pagesneeded == 0)) {
|
||||
if (map->pagesneeded == 0) {
|
||||
CTR3(KTR_BUSDMA, "lowaddr= %d, boundary= %d, alignment= %d",
|
||||
dmat->lowaddr, dmat->boundary, dmat->alignment);
|
||||
CTR2(KTR_BUSDMA, "map= %p, pagesneeded= %d",
|
||||
@ -838,7 +838,7 @@ _bus_dmamap_count_pages(bus_dma_tag_t dmat, bus_dmamap_t map, pmap_t pmap,
|
||||
vm_offset_t vendaddr;
|
||||
bus_addr_t paddr;
|
||||
|
||||
if ((map->pagesneeded == 0)) {
|
||||
if (map->pagesneeded == 0) {
|
||||
CTR3(KTR_BUSDMA, "lowaddr= %d, boundary= %d, alignment= %d",
|
||||
dmat->lowaddr, dmat->boundary, dmat->alignment);
|
||||
CTR2(KTR_BUSDMA, "map= %p, pagesneeded= %d",
|
||||
|
Loading…
Reference in New Issue
Block a user