Skip to content

Commit

Permalink
pata_octeon_cf: remove unused local variables from octeon_cf_set_piom…
Browse files Browse the repository at this point in the history
…ode()

@t1 and @t2i are calculated along with @t2 but never used.  Drop them.

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: David Binderman <dcb314@hotmail.com>
  • Loading branch information
Tejun Heo committed Jan 23, 2017
1 parent ce8f453 commit d786b91
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions drivers/ata/pata_octeon_cf.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,7 @@ static void octeon_cf_set_piomode(struct ata_port *ap, struct ata_device *dev)
int trh;
int pause;
/* These names are timing parameters from the ATA spec */
int t1;
int t2;
int t2i;

/*
* A divisor value of four will overflow the timing fields at
Expand All @@ -154,15 +152,9 @@ static void octeon_cf_set_piomode(struct ata_port *ap, struct ata_device *dev)

BUG_ON(ata_timing_compute(dev, dev->pio_mode, &timing, T, T));

t1 = timing.setup;
if (t1)
t1--;
t2 = timing.active;
if (t2)
t2--;
t2i = timing.act8b;
if (t2i)
t2i--;

trh = ns_to_tim_reg(div, 20);
if (trh)
Expand Down

0 comments on commit d786b91

Please sign in to comment.