[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1285747145.12259.3.camel@needafix>
Date: Wed, 29 Sep 2010 09:59:05 +0200
From: Jonas Bonn <jonas@...thpole.se>
To: linux-kernel@...r.kernel.org
Subject: ioremap definition in generic io.h
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists