提交 759af179 编写于 作者: P Paul Parsons 提交者: Haojian Zhuang

ARM: pxa: hx4700: Use DEFINE_RES_* macros consistently

This patch replaces the remaining inline struct resource definitions
with equivalent DEFINE_RES_* macro calls.
The source file is reduced in size; the object file is unchanged.
Signed-off-by: NPaul Parsons <lost.distance@yahoo.com>
Cc: Philipp Zabel <philipp.zabel@gmail.com>
Signed-off-by: NHaojian Zhuang <haojian.zhuang@gmail.com>
上级 a2f81c0e
...@@ -288,27 +288,11 @@ static struct asic3_led asic3_leds[ASIC3_NUM_LEDS] = { ...@@ -288,27 +288,11 @@ static struct asic3_led asic3_leds[ASIC3_NUM_LEDS] = {
static struct resource asic3_resources[] = { static struct resource asic3_resources[] = {
/* GPIO part */ /* GPIO part */
[0] = { [0] = DEFINE_RES_MEM(ASIC3_PHYS, ASIC3_MAP_SIZE_16BIT),
.start = ASIC3_PHYS, [1] = DEFINE_RES_IRQ(PXA_GPIO_TO_IRQ(GPIO12_HX4700_ASIC3_IRQ)),
.end = ASIC3_PHYS + ASIC3_MAP_SIZE_16BIT - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = PXA_GPIO_TO_IRQ(GPIO12_HX4700_ASIC3_IRQ),
.end = PXA_GPIO_TO_IRQ(GPIO12_HX4700_ASIC3_IRQ),
.flags = IORESOURCE_IRQ,
},
/* SD part */ /* SD part */
[2] = { [2] = DEFINE_RES_MEM(ASIC3_SD_PHYS, ASIC3_MAP_SIZE_16BIT),
.start = ASIC3_SD_PHYS, [3] = DEFINE_RES_IRQ(PXA_GPIO_TO_IRQ(GPIO66_HX4700_ASIC3_nSDIO_IRQ)),
.end = ASIC3_SD_PHYS + ASIC3_MAP_SIZE_16BIT - 1,
.flags = IORESOURCE_MEM,
},
[3] = {
.start = PXA_GPIO_TO_IRQ(GPIO66_HX4700_ASIC3_nSDIO_IRQ),
.end = PXA_GPIO_TO_IRQ(GPIO66_HX4700_ASIC3_nSDIO_IRQ),
.flags = IORESOURCE_IRQ,
},
}; };
static struct asic3_platform_data asic3_platform_data = { static struct asic3_platform_data asic3_platform_data = {
...@@ -335,11 +319,7 @@ static struct platform_device asic3 = { ...@@ -335,11 +319,7 @@ static struct platform_device asic3 = {
*/ */
static struct resource egpio_resources[] = { static struct resource egpio_resources[] = {
[0] = { [0] = DEFINE_RES_MEM(PXA_CS5_PHYS, 0x4),
.start = PXA_CS5_PHYS,
.end = PXA_CS5_PHYS + 0x4 - 1,
.flags = IORESOURCE_MEM,
},
}; };
static struct htc_egpio_chip egpio_chips[] = { static struct htc_egpio_chip egpio_chips[] = {
...@@ -529,11 +509,7 @@ static struct w100fb_mach_info w3220_info = { ...@@ -529,11 +509,7 @@ static struct w100fb_mach_info w3220_info = {
}; };
static struct resource w3220_resources[] = { static struct resource w3220_resources[] = {
[0] = { [0] = DEFINE_RES_MEM(ATI_W3220_PHYS, SZ_16M),
.start = ATI_W3220_PHYS,
.end = ATI_W3220_PHYS + 0x00ffffff,
.flags = IORESOURCE_MEM,
},
}; };
static struct platform_device w3220 = { static struct platform_device w3220 = {
...@@ -675,20 +651,12 @@ static struct pda_power_pdata power_supply_info = { ...@@ -675,20 +651,12 @@ static struct pda_power_pdata power_supply_info = {
}; };
static struct resource power_supply_resources[] = { static struct resource power_supply_resources[] = {
[0] = { [0] = DEFINE_RES_NAMED(PXA_GPIO_TO_IRQ(GPIOD9_nAC_IN), 1, "ac",
.name = "ac", IORESOURCE_IRQ |
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE | IORESOURCE_IRQ_HIGHEDGE | IORESOURCE_IRQ_LOWEDGE),
IORESOURCE_IRQ_LOWEDGE, [1] = DEFINE_RES_NAMED(PXA_GPIO_TO_IRQ(GPIOD14_nUSBC_DETECT), 1, "usb",
.start = PXA_GPIO_TO_IRQ(GPIOD9_nAC_IN), IORESOURCE_IRQ |
.end = PXA_GPIO_TO_IRQ(GPIOD9_nAC_IN), IORESOURCE_IRQ_HIGHEDGE | IORESOURCE_IRQ_LOWEDGE),
},
[1] = {
.name = "usb",
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE |
IORESOURCE_IRQ_LOWEDGE,
.start = PXA_GPIO_TO_IRQ(GPIOD14_nUSBC_DETECT),
.end = PXA_GPIO_TO_IRQ(GPIOD14_nUSBC_DETECT),
},
}; };
static struct platform_device power_supply = { static struct platform_device power_supply = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册