diff options
author | Alex Dubov <oakad@yahoo.com> | 2006-12-10 09:55:30 -0500 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-02-04 14:54:08 -0500 |
commit | 50743f4cb1d655c7fbe25af58a9d0db6bf76d687 (patch) | |
tree | a6e544ea49144ab369b866f2b04b3b1f05201fb6 /drivers/mmc | |
parent | 2e8ce5e7414e74fe8904495b1f22cf00d3349398 (diff) |
Remove unused return value from signal_irq callback
Signed-off-by: Alex Dubov <oakad@yahoo.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/tifm_sd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mmc/tifm_sd.c b/drivers/mmc/tifm_sd.c index 37fe0c3ecb85..2adfe3467019 100644 --- a/drivers/mmc/tifm_sd.c +++ b/drivers/mmc/tifm_sd.c | |||
@@ -323,8 +323,8 @@ change_state: | |||
323 | } | 323 | } |
324 | 324 | ||
325 | /* Called from interrupt handler */ | 325 | /* Called from interrupt handler */ |
326 | static unsigned int tifm_sd_signal_irq(struct tifm_dev *sock, | 326 | static void tifm_sd_signal_irq(struct tifm_dev *sock, |
327 | unsigned int sock_irq_status) | 327 | unsigned int sock_irq_status) |
328 | { | 328 | { |
329 | struct tifm_sd *host; | 329 | struct tifm_sd *host; |
330 | unsigned int host_status = 0, fifo_status = 0; | 330 | unsigned int host_status = 0, fifo_status = 0; |
@@ -395,7 +395,6 @@ done: | |||
395 | dev_dbg(&sock->dev, "host_status %x, fifo_status %x\n", | 395 | dev_dbg(&sock->dev, "host_status %x, fifo_status %x\n", |
396 | host_status, fifo_status); | 396 | host_status, fifo_status); |
397 | spin_unlock(&sock->lock); | 397 | spin_unlock(&sock->lock); |
398 | return sock_irq_status; | ||
399 | } | 398 | } |
400 | 399 | ||
401 | static void tifm_sd_prepare_data(struct tifm_sd *host, struct mmc_command *cmd) | 400 | static void tifm_sd_prepare_data(struct tifm_sd *host, struct mmc_command *cmd) |