diff options
| author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-09-08 22:01:55 -0400 |
|---|---|---|
| committer | Brian Norris <computersforpeace@gmail.com> | 2014-09-15 19:31:24 -0400 |
| commit | 55ab9ec99bbfb4450dfa9bc0fd9e2c5052f4c3f7 (patch) | |
| tree | 78496e2dd60c87e59326d35aff57c2aba5db6bdc | |
| parent | 93e3c8adf6fcf2204ca334237b92c7f8cdafce6f (diff) | |
mtd: denali: remove a set-but-unused variable
The variable "retry" in wait_for_irq() is set, but not used.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
| -rw-r--r-- | drivers/mtd/nand/denali.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c index 4cb1497fe1c0..cd586010f2ec 100644 --- a/drivers/mtd/nand/denali.c +++ b/drivers/mtd/nand/denali.c | |||
| @@ -697,7 +697,6 @@ static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask) | |||
| 697 | { | 697 | { |
| 698 | unsigned long comp_res; | 698 | unsigned long comp_res; |
| 699 | uint32_t intr_status; | 699 | uint32_t intr_status; |
| 700 | bool retry = false; | ||
| 701 | unsigned long timeout = msecs_to_jiffies(1000); | 700 | unsigned long timeout = msecs_to_jiffies(1000); |
| 702 | 701 | ||
| 703 | do { | 702 | do { |
| @@ -717,7 +716,6 @@ static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask) | |||
| 717 | * need to wait again | 716 | * need to wait again |
| 718 | */ | 717 | */ |
| 719 | spin_unlock_irq(&denali->irq_lock); | 718 | spin_unlock_irq(&denali->irq_lock); |
| 720 | retry = true; | ||
| 721 | } | 719 | } |
| 722 | } while (comp_res != 0); | 720 | } while (comp_res != 0); |
| 723 | 721 | ||
