diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-19 14:49:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-19 14:49:33 -0400 |
commit | 349e1fba7e63b1067b5915337986060c13d9edd0 (patch) | |
tree | 7450f8355fb7f050066aab3fb94c1073e2080f7a /arch/arm/mm | |
parent | fa9dc265ace9774e62f0e31108e5f47911124bda (diff) | |
parent | 504d36e91ac12ccdb0e1193cee7bef9831a1c99e (diff) |
Merge branch 'for-linus/samsung4' of git://git.fluff.org/bjdooks/linux
* 'for-linus/samsung4' of git://git.fluff.org/bjdooks/linux: (98 commits)
Input: s3c24xx_ts - depend on SAMSUNG_DEV_TS and update menu entry
Input: s3c24xx_ts - Add FEAT for Samsung touchscreen support
Input: s3c24xx_ts - Implement generic GPIO configuration callback
ARM: SAMSUNG: Move s3c64xx dev-ts.c to plat-samsung and rename configuration
ARM: SAMSUNG: Implements cfg_gpio function for Samsung touchscreen
ARM: S3C64XX: Add touchscreen platform device definition
ARM: SAMSUNG: Move mach/ts.h to plat/ts.h
ARM: S5PC100: Move i2c helpers from plat-s5pc1xx to mach-s5pc100
ARM: S5PC100: Move frame buffer helpers from plat-s5pc1xx to mach-s5pc100
ARM: S5PC100: gpio.h cleanup
ARM: S5PC100: Move gpio support from plat-s5pc1xx to mach-s5pc100
ARM: S5PC100: Use common functions for gpiolib implementation
drivers: serial: S5PC100 serial driver cleanup
ARM: S5PC100: Pre-requisite clock patch for plat-s5pc1xx to plat-s5p move
ARM: SAMSUNG: Copy common I2C0 device helpers to machine directories
ARM: SAMSUNG: move driver strength gpio configuration helper to common dir
ARM: S5PV210: Add GPIOlib support
ARM: SAMSUNGy: fix broken timer irq base
ARM: SMDK6440: Add audio devices on board
ARM: S5P6440: Add audio platform devices
...
Diffstat (limited to 'arch/arm/mm')
-rw-r--r-- | arch/arm/mm/mmu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index e7113d0b8168..285894171186 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
@@ -870,9 +870,10 @@ void __init reserve_node_zero(pg_data_t *pgdat) | |||
870 | if (machine_is_p720t()) | 870 | if (machine_is_p720t()) |
871 | res_size = 0x00014000; | 871 | res_size = 0x00014000; |
872 | 872 | ||
873 | /* H1940 and RX3715 need to reserve this for suspend */ | 873 | /* H1940, RX3715 and RX1950 need to reserve this for suspend */ |
874 | 874 | ||
875 | if (machine_is_h1940() || machine_is_rx3715()) { | 875 | if (machine_is_h1940() || machine_is_rx3715() |
876 | || machine_is_rx1950()) { | ||
876 | reserve_bootmem_node(pgdat, 0x30003000, 0x1000, | 877 | reserve_bootmem_node(pgdat, 0x30003000, 0x1000, |
877 | BOOTMEM_DEFAULT); | 878 | BOOTMEM_DEFAULT); |
878 | reserve_bootmem_node(pgdat, 0x30081000, 0x1000, | 879 | reserve_bootmem_node(pgdat, 0x30081000, 0x1000, |