diff options
| -rw-r--r-- | drivers/ata/pata_at91.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/drivers/ata/pata_at91.c b/drivers/ata/pata_at91.c index a9a066a18ccf..a5fdbdcb0faf 100644 --- a/drivers/ata/pata_at91.c +++ b/drivers/ata/pata_at91.c | |||
| @@ -50,8 +50,18 @@ struct at91_ide_info { | |||
| 50 | void __iomem *alt_addr; | 50 | void __iomem *alt_addr; |
| 51 | }; | 51 | }; |
| 52 | 52 | ||
| 53 | static const struct ata_timing initial_timing = | 53 | static const struct ata_timing initial_timing = { |
| 54 | {XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0}; | 54 | .mode = XFER_PIO_0, |
| 55 | .setup = 70, | ||
| 56 | .act8b = 290, | ||
| 57 | .rec8b = 240, | ||
| 58 | .cyc8b = 600, | ||
| 59 | .active = 165, | ||
| 60 | .recover = 150, | ||
| 61 | .dmack_hold = 0, | ||
| 62 | .cycle = 600, | ||
| 63 | .udma = 0 | ||
| 64 | }; | ||
| 55 | 65 | ||
| 56 | static unsigned long calc_mck_cycles(unsigned long ns, unsigned long mck_hz) | 66 | static unsigned long calc_mck_cycles(unsigned long ns, unsigned long mck_hz) |
| 57 | { | 67 | { |
