ioremap definition in generic io.h

From: Jonas Bonn
Date: Wed Sep 29 2010 - 04:18:12 EST


Hi,

I'm wondering about the usefulness of the definition of ioremap and
__ioremap in asm-generic/io.h. How is this intended to be used? How
are the page tables for this mapping supposed to be constructed?

The definition is as follows:

/*
* Change "struct page" to physical address.
*/
static inline void __iomem *ioremap(phys_addr_t offset, unsigned long
size)
{
return (void __iomem*) (unsigned long)offset;
}

#define __ioremap(offset, size, flags) ioremap(offset, size)

Regards,
Jonas




--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/