Commit fcb78d1f authored by Philipp Zabel's avatar Philipp Zabel Committed by Eric Miao

[ARM] pxa/magician: Use SZ_64M for physmap resource

Improves readability over the custom #define.
Signed-off-by: default avatarPhilipp Zabel <philipp.zabel@gmail.com>
Signed-off-by: default avatarEric Miao <eric.miao@marvell.com>
parent dee63169
...@@ -693,11 +693,9 @@ static void magician_set_vpp(struct map_info *map, int vpp) ...@@ -693,11 +693,9 @@ static void magician_set_vpp(struct map_info *map, int vpp)
gpio_set_value(EGPIO_MAGICIAN_FLASH_VPP, vpp); gpio_set_value(EGPIO_MAGICIAN_FLASH_VPP, vpp);
} }
#define PXA_CS_SIZE 0x04000000
static struct resource strataflash_resource = { static struct resource strataflash_resource = {
.start = PXA_CS0_PHYS, .start = PXA_CS0_PHYS,
.end = PXA_CS0_PHYS + PXA_CS_SIZE - 1, .end = PXA_CS0_PHYS + SZ_64M - 1,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}; };
......
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