diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-10 17:47:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-10 18:37:22 -0400 |
commit | e4cad1b5a4851c90c1bcf460062074a2fa10815b (patch) | |
tree | c627fb3cc0c711633eb3770c82be65fd77f17682 /drivers/mmc | |
parent | ba2397efe10ba728c7ff22b179e218c292227c13 (diff) |
[PATCH] passing pointer to setup_timer() should be via unsigned long
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/sdhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c index 6d024342b2fd..9a7d39b7cdbf 100644 --- a/drivers/mmc/sdhci.c +++ b/drivers/mmc/sdhci.c | |||
@@ -1329,7 +1329,7 @@ static int __devinit sdhci_probe_slot(struct pci_dev *pdev, int slot) | |||
1329 | tasklet_init(&host->finish_tasklet, | 1329 | tasklet_init(&host->finish_tasklet, |
1330 | sdhci_tasklet_finish, (unsigned long)host); | 1330 | sdhci_tasklet_finish, (unsigned long)host); |
1331 | 1331 | ||
1332 | setup_timer(&host->timer, sdhci_timeout_timer, (long)host); | 1332 | setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host); |
1333 | 1333 | ||
1334 | ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED, | 1334 | ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED, |
1335 | host->slot_descr, host); | 1335 | host->slot_descr, host); |