2006-11-11 06:18:39 +00:00
|
|
|
/*
|
|
|
|
* Arch specific extensions to struct device
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2
|
|
|
|
*/
|
2010-10-01 20:27:32 +00:00
|
|
|
#ifndef _ASM_MIPS_DEVICE_H
|
|
|
|
#define _ASM_MIPS_DEVICE_H
|
|
|
|
|
|
|
|
struct dev_archdata {
|
2016-10-05 17:18:16 +00:00
|
|
|
#ifdef CONFIG_DMA_PERDEV_COHERENT
|
|
|
|
/* Non-zero if DMA is coherent with CPU caches */
|
|
|
|
bool dma_coherent;
|
|
|
|
#endif
|
2010-10-01 20:27:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct pdev_archdata {
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _ASM_MIPS_DEVICE_H*/
|