IDE: Coding Style fixes to drivers/ide/pci/opti621.c
Compile tested. [bart: some fixes, md5sum checked] Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
177b8fe9a5
commit
4eb68a256d
|
@ -218,19 +218,24 @@ static void compute_clocks(int pio, pio_clocks_t *clks)
|
|||
clks->data_time = cmpt_clk(data_pls, bus_speed);
|
||||
clks->recovery_time = cmpt_clk(ide_pio_timings[pio].cycle_time
|
||||
- adr_setup-data_pls, bus_speed);
|
||||
if (clks->address_time<1) clks->address_time = 1;
|
||||
if (clks->address_time>4) clks->address_time = 4;
|
||||
if (clks->data_time<1) clks->data_time = 1;
|
||||
if (clks->data_time>16) clks->data_time = 16;
|
||||
if (clks->recovery_time<2) clks->recovery_time = 2;
|
||||
if (clks->recovery_time>17) clks->recovery_time = 17;
|
||||
if (clks->address_time < 1)
|
||||
clks->address_time = 1;
|
||||
if (clks->address_time > 4)
|
||||
clks->address_time = 4;
|
||||
if (clks->data_time < 1)
|
||||
clks->data_time = 1;
|
||||
if (clks->data_time > 16)
|
||||
clks->data_time = 16;
|
||||
if (clks->recovery_time < 2)
|
||||
clks->recovery_time = 2;
|
||||
if (clks->recovery_time > 17)
|
||||
clks->recovery_time = 17;
|
||||
} else {
|
||||
clks->address_time = 1;
|
||||
clks->data_time = 1;
|
||||
clks->recovery_time = 2;
|
||||
/* minimal values */
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static void opti621_set_pio_mode(ide_drive_t *drive, const u8 pio)
|
||||
|
|
Loading…
Reference in New Issue