mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
Provide dummy devm_ioport_* if !HAS_IOPORT
Provide an dummy implementation of devm_ioport_map() and devm_ioport_unmap() to allow drivers (eg, pata_platform) to build for platforms where CONFIG_NO_IOPORT is selected. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Cc: Jeff Garzik <jeff@garzik.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
30f3deeee8
commit
93da28790c
@ -33,9 +33,22 @@ int ioremap_page_range(unsigned long addr, unsigned long end,
|
||||
/*
|
||||
* Managed iomap interface
|
||||
*/
|
||||
#ifdef CONFIG_HAS_IOPORT
|
||||
void __iomem * devm_ioport_map(struct device *dev, unsigned long port,
|
||||
unsigned int nr);
|
||||
void devm_ioport_unmap(struct device *dev, void __iomem *addr);
|
||||
#else
|
||||
static inline void __iomem *devm_ioport_map(struct device *dev,
|
||||
unsigned long port,
|
||||
unsigned int nr)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline void devm_ioport_unmap(struct device *dev, void __iomem *addr)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
void __iomem * devm_ioremap(struct device *dev, unsigned long offset,
|
||||
unsigned long size);
|
||||
|
Loading…
Reference in New Issue
Block a user