forked from Minki/linux
[MMC] sdhci truncated pointer fix
On 64-bit machines, we just lost the uppermost 32 bits. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
0e838b72d5
commit
e474c66b1c
@ -1073,7 +1073,7 @@ static int __devinit sdhci_probe_slot(struct pci_dev *pdev, int slot)
|
||||
tasklet_init(&host->finish_tasklet,
|
||||
sdhci_tasklet_finish, (unsigned long)host);
|
||||
|
||||
setup_timer(&host->timer, sdhci_timeout_timer, (int)host);
|
||||
setup_timer(&host->timer, sdhci_timeout_timer, (long)host);
|
||||
|
||||
ret = request_irq(host->irq, sdhci_irq, SA_SHIRQ,
|
||||
host->slot_descr, host);
|
||||
|
Loading…
Reference in New Issue
Block a user