diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-02-25 11:38:11 +0800 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-02-25 11:38:11 +0800 |
commit | edf056417d11fe9321ec15a55bd128e4f4c73796 (patch) | |
tree | 295617d3f4f86843b845d46981316606e478f956 /arch/blackfin/mach-bf561 | |
parent | 32320ea0a63003a249773b5e3e459e66bb5fb8f8 (diff) | |
download | linux-stable-edf056417d11fe9321ec15a55bd128e4f4c73796.tar.gz |
[Blackfin] arch: fix bug - set right partition size in the board files
- set default u-boot partition size to 256k
- modify the offset with the size change
- use mtd defines (append for offset and full for size)
where applicable rather than churning constants when we dont have to
Signed-off-by: Grace Pan <grace.pan@analog.com>
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-bf561')
-rw-r--r-- | arch/blackfin/mach-bf561/boards/ezkit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf561/boards/ezkit.c b/arch/blackfin/mach-bf561/boards/ezkit.c index 43c1b0982819..480b0a91a748 100644 --- a/arch/blackfin/mach-bf561/boards/ezkit.c +++ b/arch/blackfin/mach-bf561/boards/ezkit.c @@ -223,7 +223,7 @@ static struct platform_device bfin_uart_device = { static struct mtd_partition ezkit_partitions[] = { { .name = "Bootloader", - .size = 0x20000, + .size = 0x40000, .offset = 0, }, { .name = "Kernel", |