https://github.com/torvalds/linux
Raw File
Tip revision: b69f0859dc8e633c5d8c06845811588fe17e68b3 authored by Linus Torvalds on 03 December 2012, 19:22:37 UTC
Linux 3.7-rc8
Tip revision: b69f085
of_iommu.h
#ifndef __OF_IOMMU_H
#define __OF_IOMMU_H

#ifdef CONFIG_OF_IOMMU

extern int of_get_dma_window(struct device_node *dn, const char *prefix,
			     int index, unsigned long *busno, dma_addr_t *addr,
			     size_t *size);

#else

static inline int of_get_dma_window(struct device_node *dn, const char *prefix,
			    int index, unsigned long *busno, dma_addr_t *addr,
			    size_t *size)
{
	return -EINVAL;
}

#endif	/* CONFIG_OF_IOMMU */

#endif /* __OF_IOMMU_H */
back to top