Skip to content

Commit

Permalink
Blackfin arch: fix end address for parallel flash and increase kernel…
Browse files Browse the repository at this point in the history
… partition size to 4meg

Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
  • Loading branch information
Mike Frysinger authored and Bryan Wu committed Oct 9, 2008
1 parent 6c3fc69 commit 664d040
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/blackfin/mach-bf548/boards/ezkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ static struct mtd_partition ezkit_partitions[] = {
.offset = 0,
}, {
.name = "linux kernel(nor)",
.size = 0x1C0000,
.size = 0x400000,
.offset = MTDPART_OFS_APPEND,
}, {
.name = "file system(nor)",
Expand All @@ -479,7 +479,7 @@ static struct physmap_flash_data ezkit_flash_data = {

static struct resource ezkit_flash_resource = {
.start = 0x20000000,
.end = 0x20ffffff,
.end = 0x21ffffff,
.flags = IORESOURCE_MEM,
};

Expand Down

0 comments on commit 664d040

Please sign in to comment.