blob: 6aa796f1081a90b0b2f1dded017cb29fce683c09 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/*
2 * Arch specific extensions to struct device
3 *
4 * This file is released under the GPLv2
5 */
6#ifndef _ASM_MIPS_DEVICE_H
7#define _ASM_MIPS_DEVICE_H
8
9struct dev_archdata {
10#ifdef CONFIG_DMA_PERDEV_COHERENT
11 /* Non-zero if DMA is coherent with CPU caches */
12 bool dma_coherent;
13#endif
14};
15
16struct pdev_archdata {
17};
18
19#endif /* _ASM_MIPS_DEVICE_H*/