https://github.com/torvalds/linux
Raw File
Tip revision: d9875690d9b89a866022ff49e3fcea892345ad92 authored by Linus Torvalds on 16 August 2012, 21:51:24 UTC
Linux 3.6-rc2
Tip revision: d987569
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