diff options
| author | Adrian Bunk <bunk@stusta.de> | 2005-06-25 17:59:09 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 19:25:05 -0400 |
| commit | e8e1c7292ee9b64c35b3f6d7f905ca5e854aea95 (patch) | |
| tree | 99a1e06d364c935cbb2d3b76ca0c4fc6676ba6d6 /drivers/char/mwave | |
| parent | 67da54cf5d577c9dda835d0cf42379657d15d6c9 (diff) | |
[PATCH] drivers/char/mwave/tp3780i.c: remove dead code
This patch removes some dead code found by the Coverity checker.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/mwave')
| -rw-r--r-- | drivers/char/mwave/tp3780i.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/char/mwave/tp3780i.c b/drivers/char/mwave/tp3780i.c index 954d06f39b2..d6c72e0934e 100644 --- a/drivers/char/mwave/tp3780i.c +++ b/drivers/char/mwave/tp3780i.c | |||
| @@ -286,7 +286,7 @@ int tp3780I_ReleaseResources(THINKPAD_BD_DATA * pBDData) | |||
| 286 | int tp3780I_EnableDSP(THINKPAD_BD_DATA * pBDData) | 286 | int tp3780I_EnableDSP(THINKPAD_BD_DATA * pBDData) |
| 287 | { | 287 | { |
| 288 | DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings; | 288 | DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings; |
| 289 | BOOLEAN bDSPPoweredUp = FALSE, bDSPEnabled = FALSE, bInterruptAllocated = FALSE; | 289 | BOOLEAN bDSPPoweredUp = FALSE, bInterruptAllocated = FALSE; |
| 290 | 290 | ||
| 291 | PRINTK_2(TRACE_TP3780I, "tp3780i::tp3780I_EnableDSP entry pBDData %p\n", pBDData); | 291 | PRINTK_2(TRACE_TP3780I, "tp3780i::tp3780I_EnableDSP entry pBDData %p\n", pBDData); |
| 292 | 292 | ||
| @@ -391,8 +391,6 @@ int tp3780I_EnableDSP(THINKPAD_BD_DATA * pBDData) | |||
| 391 | if (dsp3780I_EnableDSP(pSettings, s_ausThinkpadIrqToField, s_ausThinkpadDmaToField)) { | 391 | if (dsp3780I_EnableDSP(pSettings, s_ausThinkpadIrqToField, s_ausThinkpadDmaToField)) { |
| 392 | PRINTK_ERROR("tp3780i::tp3780I_EnableDSP: Error: dsp7880I_EnableDSP() failed\n"); | 392 | PRINTK_ERROR("tp3780i::tp3780I_EnableDSP: Error: dsp7880I_EnableDSP() failed\n"); |
| 393 | goto exit_cleanup; | 393 | goto exit_cleanup; |
| 394 | } else { | ||
| 395 | bDSPEnabled = TRUE; | ||
| 396 | } | 394 | } |
| 397 | 395 | ||
| 398 | EnableSRAM(pBDData); | 396 | EnableSRAM(pBDData); |
| @@ -405,8 +403,6 @@ int tp3780I_EnableDSP(THINKPAD_BD_DATA * pBDData) | |||
| 405 | 403 | ||
| 406 | exit_cleanup: | 404 | exit_cleanup: |
| 407 | PRINTK_ERROR("tp3780i::tp3780I_EnableDSP: Cleaning up\n"); | 405 | PRINTK_ERROR("tp3780i::tp3780I_EnableDSP: Cleaning up\n"); |
| 408 | if (bDSPEnabled) | ||
| 409 | dsp3780I_DisableDSP(pSettings); | ||
| 410 | if (bDSPPoweredUp) | 406 | if (bDSPPoweredUp) |
| 411 | smapi_set_DSP_power_state(FALSE); | 407 | smapi_set_DSP_power_state(FALSE); |
| 412 | if (bInterruptAllocated) { | 408 | if (bInterruptAllocated) { |
