|
@@ -38,7 +38,6 @@
|
|
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
|
|
#include <linux/usb/isp1362.h>
|
|
|
#endif
|
|
|
-#include <linux/ata_platform.h>
|
|
|
#include <linux/irq.h>
|
|
|
#include <linux/interrupt.h>
|
|
|
#include <linux/usb/sl811.h>
|
|
@@ -619,43 +618,6 @@ static struct platform_device bfin_sport1_uart_device = {
|
|
|
};
|
|
|
#endif
|
|
|
|
|
|
-#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
|
|
-#define PATA_INT 55
|
|
|
-
|
|
|
-static struct pata_platform_info bfin_pata_platform_data = {
|
|
|
- .ioport_shift = 1,
|
|
|
- .irq_type = IRQF_TRIGGER_HIGH | IRQF_DISABLED,
|
|
|
-};
|
|
|
-
|
|
|
-static struct resource bfin_pata_resources[] = {
|
|
|
- {
|
|
|
- .start = 0x20314020,
|
|
|
- .end = 0x2031403F,
|
|
|
- .flags = IORESOURCE_MEM,
|
|
|
- },
|
|
|
- {
|
|
|
- .start = 0x2031401C,
|
|
|
- .end = 0x2031401F,
|
|
|
- .flags = IORESOURCE_MEM,
|
|
|
- },
|
|
|
- {
|
|
|
- .start = PATA_INT,
|
|
|
- .end = PATA_INT,
|
|
|
- .flags = IORESOURCE_IRQ,
|
|
|
- },
|
|
|
-};
|
|
|
-
|
|
|
-static struct platform_device bfin_pata_device = {
|
|
|
- .name = "pata_platform",
|
|
|
- .id = -1,
|
|
|
- .num_resources = ARRAY_SIZE(bfin_pata_resources),
|
|
|
- .resource = bfin_pata_resources,
|
|
|
- .dev = {
|
|
|
- .platform_data = &bfin_pata_platform_data,
|
|
|
- }
|
|
|
-};
|
|
|
-#endif
|
|
|
-
|
|
|
static struct platform_device *stamp_devices[] __initdata = {
|
|
|
#if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
|
|
|
&bfin_pcmcia_cf_device,
|
|
@@ -717,10 +679,6 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|
|
&bfin_sport0_uart_device,
|
|
|
&bfin_sport1_uart_device,
|
|
|
#endif
|
|
|
-
|
|
|
-#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
|
|
- &bfin_pata_device,
|
|
|
-#endif
|
|
|
};
|
|
|
|
|
|
static int __init stamp_init(void)
|
|
@@ -732,9 +690,6 @@ static int __init stamp_init(void)
|
|
|
ARRAY_SIZE(bfin_spi_board_info));
|
|
|
#endif
|
|
|
|
|
|
-#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
|
|
- irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
|
|
-#endif
|
|
|
return 0;
|
|
|
}
|
|
|
|