Skip to content

Commit 0fb3436

Browse files
tititiou36Christoph Hellwig
authored andcommitted
sparc: Remove usage of the deprecated "pci-dma-compat.h" API
In [1], Christoph Hellwig has proposed to remove the wrappers in include/linux/pci-dma-compat.h. Some reasons why this API should be removed have been given by Julia Lawall in [2]. A coccinelle script has been used to perform the needed transformation. It can be found in [3]. [1]: https://lore.kernel.org/kernel-janitors/[email protected]/ [2]: https://lore.kernel.org/kernel-janitors/alpine.DEB.2.22.394.2007120902170.2424@hadrien/ [3]: https://lore.kernel.org/kernel-janitors/[email protected]/ Signed-off-by: Christophe JAILLET <[email protected]> Reviewed-by: Arnd Bergmann <[email protected]> Acked-by: David S. Miller <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]>
1 parent ffecba8 commit 0fb3436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/sparc/kernel/ioport.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ arch_initcall(sparc_register_ioport);
309309
void arch_sync_dma_for_cpu(phys_addr_t paddr, size_t size,
310310
enum dma_data_direction dir)
311311
{
312-
if (dir != PCI_DMA_TODEVICE &&
312+
if (dir != DMA_TO_DEVICE &&
313313
sparc_cpu_model == sparc_leon &&
314314
!sparc_leon3_snooping_enabled())
315315
leon_flush_dcache_all();

0 commit comments

Comments
 (0)