diff options
Diffstat (limited to 'arch/arm/mach-imx/mach-mx31lite.c')
-rw-r--r-- | arch/arm/mach-imx/mach-mx31lite.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/arch/arm/mach-imx/mach-mx31lite.c b/arch/arm/mach-imx/mach-mx31lite.c index 686c60587980..c8785b39eaed 100644 --- a/arch/arm/mach-imx/mach-mx31lite.c +++ b/arch/arm/mach-imx/mach-mx31lite.c | |||
@@ -43,7 +43,6 @@ | |||
43 | #include <mach/common.h> | 43 | #include <mach/common.h> |
44 | #include <mach/board-mx31lite.h> | 44 | #include <mach/board-mx31lite.h> |
45 | #include <mach/iomux-mx3.h> | 45 | #include <mach/iomux-mx3.h> |
46 | #include <mach/irqs.h> | ||
47 | #include <mach/ulpi.h> | 46 | #include <mach/ulpi.h> |
48 | 47 | ||
49 | #include "devices-imx31.h" | 48 | #include "devices-imx31.h" |
@@ -83,8 +82,7 @@ static struct resource smsc911x_resources[] = { | |||
83 | .end = MX31_CS4_BASE_ADDR + 0x100, | 82 | .end = MX31_CS4_BASE_ADDR + 0x100, |
84 | .flags = IORESOURCE_MEM, | 83 | .flags = IORESOURCE_MEM, |
85 | }, { | 84 | }, { |
86 | .start = IOMUX_TO_IRQ(MX31_PIN_SFS6), | 85 | /* irq number is run-time assigned */ |
87 | .end = IOMUX_TO_IRQ(MX31_PIN_SFS6), | ||
88 | .flags = IORESOURCE_IRQ, | 86 | .flags = IORESOURCE_IRQ, |
89 | }, | 87 | }, |
90 | }; | 88 | }; |
@@ -124,7 +122,7 @@ static struct spi_board_info mc13783_spi_dev __initdata = { | |||
124 | .bus_num = 1, | 122 | .bus_num = 1, |
125 | .chip_select = 0, | 123 | .chip_select = 0, |
126 | .platform_data = &mc13783_pdata, | 124 | .platform_data = &mc13783_pdata, |
127 | .irq = IOMUX_TO_IRQ(MX31_PIN_GPIO1_3), | 125 | /* irq number is run-time assigned */ |
128 | }; | 126 | }; |
129 | 127 | ||
130 | /* | 128 | /* |
@@ -258,6 +256,7 @@ static void __init mx31lite_init(void) | |||
258 | imx31_add_mxc_nand(&mx31lite_nand_board_info); | 256 | imx31_add_mxc_nand(&mx31lite_nand_board_info); |
259 | 257 | ||
260 | imx31_add_spi_imx1(&spi1_pdata); | 258 | imx31_add_spi_imx1(&spi1_pdata); |
259 | mc13783_spi_dev.irq = gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_GPIO1_3)); | ||
261 | spi_register_board_info(&mc13783_spi_dev, 1); | 260 | spi_register_board_info(&mc13783_spi_dev, 1); |
262 | 261 | ||
263 | /* USB */ | 262 | /* USB */ |
@@ -274,6 +273,10 @@ static void __init mx31lite_init(void) | |||
274 | pr_warning("could not get LAN irq gpio\n"); | 273 | pr_warning("could not get LAN irq gpio\n"); |
275 | else { | 274 | else { |
276 | gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_SFS6)); | 275 | gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_SFS6)); |
276 | smsc911x_resources[1].start = | ||
277 | gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_SFS6)); | ||
278 | smsc911x_resources[1].end = | ||
279 | gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_SFS6)); | ||
277 | platform_device_register(&smsc911x_device); | 280 | platform_device_register(&smsc911x_device); |
278 | } | 281 | } |
279 | } | 282 | } |