xref: /aosp_15_r20/external/coreboot/src/arch/x86/dma.c (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <stdlib.h>
4 
dma_coherent(const void * ptr)5 int dma_coherent(const void *ptr)
6 {
7 	return 1;
8 }
9