]> asedeno.scripts.mit.edu Git - linux.git/commit
mtd: rawnand: qcom: stop using phys_to_dma()
authorArnd Bergmann <arnd@arndb.de>
Tue, 17 Jul 2018 20:27:42 +0000 (22:27 +0200)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Thu, 19 Jul 2018 21:14:13 +0000 (23:14 +0200)
commit7330fc505af4af262ef874a4fc4492393106fdce
treea82c6e9291af84d27268f91b48237e800c968d8f
parentd535934a9ad4dc435884958ac44a7d6ecb6278ce
mtd: rawnand: qcom: stop using phys_to_dma()

Compile-testing this driver on x86 caused a link error:

ERROR: "__phys_to_dma" [drivers/mtd/nand/raw/qcom_nandc.ko] undefined!

The problem here is that the driver attempts to convert the physical
address into the DMA controller as a dma_addr_t and calls phys_to_dma()
to do the conversion.

The correct way to do the conversion is using the dma mapping interfaces.

Fixes: c76b78d8ec05 ("mtd: nand: Qualcomm NAND controller driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
drivers/mtd/nand/raw/qcom_nandc.c