Commit 67d9963b authored by Mike Frysinger's avatar Mike Frysinger

Blackfin: bf537-stamp: fix NAND resources

The NAND platform driver expects the registers to have a "mem"
resource type rather than "io".
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 9e75894c
......@@ -418,7 +418,7 @@ static struct platform_nand_data bfin_plat_nand_data = {
static struct resource bfin_plat_nand_resources = {
.start = 0x20212000,
.end = 0x20212000 + (1 << MAX(BFIN_NAND_PLAT_CLE, BFIN_NAND_PLAT_ALE)),
.flags = IORESOURCE_IO,
.flags = IORESOURCE_MEM,
};
static struct platform_device bfin_async_nand_device = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment