serial: xilinx_uartps: fix bad register write in console_write
[linux-2.6-xlnx.git] / arch / sparc / lib / iomap.c
blobc4d42a50ebc06d3f92fdae70aa7d1f1d64a5b6f7
1 /*
2 * Implement the sparc iomap interfaces
3 */
4 #include <linux/pci.h>
5 #include <linux/module.h>
6 #include <asm/io.h>
8 /* Create a virtual mapping cookie for an IO port range */
9 void __iomem *ioport_map(unsigned long port, unsigned int nr)
11 return (void __iomem *) (unsigned long) port;
14 void ioport_unmap(void __iomem *addr)
16 /* Nothing to do */
18 EXPORT_SYMBOL(ioport_map);
19 EXPORT_SYMBOL(ioport_unmap);
21 void pci_iounmap(struct pci_dev *dev, void __iomem * addr)
23 /* nothing to do */
25 EXPORT_SYMBOL(pci_iounmap);