diff options
| author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-27 12:30:52 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-27 12:30:52 -0400 |
| commit | d96a2a5c6479342229416565944b56bc7a2b1a60 (patch) | |
| tree | a17556ff042e739973decf0f4d1a21712e409520 /include | |
| parent | 50c46637aa894f904e2fb39086a3d7732f68bd50 (diff) | |
| parent | 81b4b98ae484f11d97b3d5b8e88d916b74055b78 (diff) | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6
* 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6:
[PARISC] Add NOTES section
[PARISC] Use compat_sys_getdents
[PARISC] Do not allow STI_CONSOLE to be modular
[PARISC] Clean up sti_flush
[PARISC] Add dummy isa_(bus|virt)_to_(virt|bus) inlines
[PARISC] Add empty <asm-parisc/vga.h>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-parisc/io.h | 10 | ||||
| -rw-r--r-- | include/asm-parisc/vga.h | 6 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/asm-parisc/io.h b/include/asm-parisc/io.h index c0fed91da3a2..4cc9bcec0564 100644 --- a/include/asm-parisc/io.h +++ b/include/asm-parisc/io.h | |||
| @@ -15,6 +15,16 @@ extern unsigned long parisc_vmerge_max_size; | |||
| 15 | #define virt_to_bus virt_to_phys | 15 | #define virt_to_bus virt_to_phys |
| 16 | #define bus_to_virt phys_to_virt | 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 | * Memory mapped I/O | 29 | * Memory mapped I/O |
| 20 | * | 30 | * |
diff --git a/include/asm-parisc/vga.h b/include/asm-parisc/vga.h new file mode 100644 index 000000000000..154a84c843a7 --- /dev/null +++ b/include/asm-parisc/vga.h | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #ifndef __ASM_PARISC_VGA_H__ | ||
| 2 | #define __ASM_PARISC_VGA_H__ | ||
| 3 | |||
| 4 | /* nothing */ | ||
| 5 | |||
| 6 | #endif __ASM_PARISC_VGA_H__ | ||
