static inline struct dma_map_ops *get_dma_ops(struct device *dev) { #ifdef CONFIG_X86_32
return dma_ops; #else if (unlikely(!dev) || !dev->archdata.dma_ops) return dma_ops;
else return dev->archdata.dma_ops; #endif }