[PARISC] Add dummy isa_(bus|virt)_to_(virt|bus) inlines

Less painful than fixing up the Kconfig for a pile of drivers to only build
on X86 && ARM && MIPS...

Just make them BUG(), as defining them to be 1:1 with physical memory will
likely HPMC the box anyways.

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

authored by Kyle McMartin and committed by Kyle McMartin fabb8ff4 37efbb70

+10
+10
include/asm-parisc/io.h
··· 15 15 #define virt_to_bus virt_to_phys 16 16 #define bus_to_virt phys_to_virt 17 17 18 + static inline unsigned long isa_bus_to_virt(unsigned long addr) { 19 + BUG(); 20 + return 0; 21 + } 22 + 23 + static inline unsigned long isa_virt_to_bus(void *addr) { 24 + BUG(); 25 + return 0; 26 + } 27 + 18 28 /* 19 29 * Memory mapped I/O 20 30 *