mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 01:51:34 +00:00
m68knommu: add missing ioport_map() and ioport_unmap()
Add the missing ioport_map() and ioport_unmap() functions for the non-MMU platforms. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
This commit is contained in:
parent
1089c552fb
commit
f89487adce
@ -179,6 +179,15 @@ static inline void *ioremap_fullcache(unsigned long physaddr, unsigned long size
|
|||||||
*/
|
*/
|
||||||
#define xlate_dev_kmem_ptr(p) p
|
#define xlate_dev_kmem_ptr(p) p
|
||||||
|
|
||||||
|
static inline void __iomem *ioport_map(unsigned long port, unsigned int nr)
|
||||||
|
{
|
||||||
|
return (void __iomem *) port;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void ioport_unmap(void __iomem *p)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* __KERNEL__ */
|
#endif /* __KERNEL__ */
|
||||||
|
|
||||||
#endif /* _M68KNOMMU_IO_H */
|
#endif /* _M68KNOMMU_IO_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user