aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-avr32/setup.h
diff options
context:
space:
mode:
authorHaavard Skinnemoen <hskinnemoen@atmel.com>2007-03-21 16:23:41 +0100
committerHaavard Skinnemoen <hskinnemoen@atmel.com>2007-04-27 13:44:15 +0200
commitd80e2bb12606906fd0b5b5592f519852de8b0113 (patch)
tree37f751e0c020d50abf92eae9dca8ae01c2eba492 /include/asm-avr32/setup.h
parent[AVR32] Reserve framebuffer memory in early_parse_fbmem() (diff)
downloadlinux-dev-d80e2bb12606906fd0b5b5592f519852de8b0113.tar.xz
linux-dev-d80e2bb12606906fd0b5b5592f519852de8b0113.zip
[AVR32] Get rid of board_setup_fbmem()
Since the core setup code takes care of both allocation and reservation of framebuffer memory, there's no need for this board- specific hook anymore. Replace it with two global variables, fbmem_start and fbmem_size, which can be used directly. Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'include/asm-avr32/setup.h')
-rw-r--r--include/asm-avr32/setup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-avr32/setup.h b/include/asm-avr32/setup.h
index bca2ee1fc607..1ff1a217015d 100644
--- a/include/asm-avr32/setup.h
+++ b/include/asm-avr32/setup.h
@@ -126,10 +126,10 @@ struct tagtable {
extern struct tag *bootloader_tags;
+extern resource_size_t fbmem_start;
+extern resource_size_t fbmem_size;
void setup_processor(void);
-extern void board_setup_fbmem(unsigned long fbmem_start,
- unsigned long fbmem_size);
#endif /* !__ASSEMBLY__ */