diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-31 20:30:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-31 20:30:59 -0400 |
commit | 968e75fc13b6d582f42ce44172e13ba58157e11f (patch) | |
tree | 306eacdf2815f8a49b47228c3b50e7a6083ef7d4 /arch/m68k/include | |
parent | a00ed25cce6fe856388f89c7cd40da0eee7666a6 (diff) | |
parent | d3690f8b713f9710e68214ca38fb8b07b587a2a7 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k:
m68k/math-emu: Remove unnecessary code
m68k/math-emu: Remove commented out old code
m68k: Kill warning in setup_arch() when compiling for Sun3
m68k/atari: Prefix GPIO_{IN,OUT} with CODEC_
sparc: iounmap() and *_free_coherent() - Use lookup_resource()
m68k/atari: Reserve some ST-RAM early on for device buffer use
m68k/amiga: Chip RAM - Use lookup_resource()
resources: Add lookup_resource()
sparc: _sparc_find_resource() should check for exact matches
m68k/amiga: Chip RAM - Offset resource end by CHIP_PHYSADDR
m68k/amiga: Chip RAM - Use resource_size() to fix off-by-one error
m68k/amiga: Chip RAM - Change chipavail to an atomic_t
m68k/amiga: Chip RAM - Always allocate from the start of memory
m68k/amiga: Chip RAM - Convert from printk() to pr_*()
m68k/amiga: Chip RAM - Use tabs for indentation
Diffstat (limited to 'arch/m68k/include')
-rw-r--r-- | arch/m68k/include/asm/atari_stram.h | 3 | ||||
-rw-r--r-- | arch/m68k/include/asm/atarihw.h | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/arch/m68k/include/asm/atari_stram.h b/arch/m68k/include/asm/atari_stram.h index 7546d13963be..62e27598af91 100644 --- a/arch/m68k/include/asm/atari_stram.h +++ b/arch/m68k/include/asm/atari_stram.h | |||
@@ -6,12 +6,11 @@ | |||
6 | */ | 6 | */ |
7 | 7 | ||
8 | /* public interface */ | 8 | /* public interface */ |
9 | void *atari_stram_alloc(long size, const char *owner); | 9 | void *atari_stram_alloc(unsigned long size, const char *owner); |
10 | void atari_stram_free(void *); | 10 | void atari_stram_free(void *); |
11 | 11 | ||
12 | /* functions called internally by other parts of the kernel */ | 12 | /* functions called internally by other parts of the kernel */ |
13 | void atari_stram_init(void); | 13 | void atari_stram_init(void); |
14 | void atari_stram_reserve_pages(void *start_mem); | 14 | void atari_stram_reserve_pages(void *start_mem); |
15 | void atari_stram_mem_init_hook (void); | ||
16 | 15 | ||
17 | #endif /*_M68K_ATARI_STRAM_H */ | 16 | #endif /*_M68K_ATARI_STRAM_H */ |
diff --git a/arch/m68k/include/asm/atarihw.h b/arch/m68k/include/asm/atarihw.h index f51f709bbf30..0392b28656ab 100644 --- a/arch/m68k/include/asm/atarihw.h +++ b/arch/m68k/include/asm/atarihw.h | |||
@@ -399,8 +399,8 @@ struct CODEC | |||
399 | #define CODEC_OVERFLOW_LEFT 2 | 399 | #define CODEC_OVERFLOW_LEFT 2 |
400 | u_char unused2, unused3, unused4, unused5; | 400 | u_char unused2, unused3, unused4, unused5; |
401 | u_char gpio_directions; | 401 | u_char gpio_directions; |
402 | #define GPIO_IN 0 | 402 | #define CODEC_GPIO_IN 0 |
403 | #define GPIO_OUT 1 | 403 | #define CODEC_GPIO_OUT 1 |
404 | u_char unused6; | 404 | u_char unused6; |
405 | u_char gpio_data; | 405 | u_char gpio_data; |
406 | }; | 406 | }; |