Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 97067d55 authored by Pierre Ossman's avatar Pierre Ossman
Browse files

wbsd: fix bad dma_addr_t conversion



DMA addresses are not pointers, so don't treat them as such. Avoids
compiler warnings when using 64-bit DMA addresses on a 32-bit system.

Signed-off-by: default avatarPierre Ossman <drzeus@drzeus.cx>
parent 7d2be074
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1420,7 +1420,7 @@ static void __devinit wbsd_request_dma(struct wbsd_host *host, int dma)

	dma_unmap_single(mmc_dev(host->mmc), host->dma_addr,
		WBSD_DMA_SIZE, DMA_BIDIRECTIONAL);
	host->dma_addr = (dma_addr_t)NULL;
	host->dma_addr = 0;

	kfree(host->dma_buffer);
	host->dma_buffer = NULL;
@@ -1445,7 +1445,7 @@ static void wbsd_release_dma(struct wbsd_host *host)

	host->dma = -1;
	host->dma_buffer = NULL;
	host->dma_addr = (dma_addr_t)NULL;
	host->dma_addr = 0;
}

/*