diff options
Diffstat (limited to 'drivers/mmc/host/atmel-mci.c')
-rw-r--r-- | drivers/mmc/host/atmel-mci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c index 88be37d9e9a5..57d3cb2dbb5f 100644 --- a/drivers/mmc/host/atmel-mci.c +++ b/drivers/mmc/host/atmel-mci.c | |||
@@ -1751,13 +1751,13 @@ static int __init atmci_probe(struct platform_device *pdev) | |||
1751 | ret = -ENODEV; | 1751 | ret = -ENODEV; |
1752 | if (pdata->slot[0].bus_width) { | 1752 | if (pdata->slot[0].bus_width) { |
1753 | ret = atmci_init_slot(host, &pdata->slot[0], | 1753 | ret = atmci_init_slot(host, &pdata->slot[0], |
1754 | MCI_SDCSEL_SLOT_A, 0); | 1754 | 0, MCI_SDCSEL_SLOT_A); |
1755 | if (!ret) | 1755 | if (!ret) |
1756 | nr_slots++; | 1756 | nr_slots++; |
1757 | } | 1757 | } |
1758 | if (pdata->slot[1].bus_width) { | 1758 | if (pdata->slot[1].bus_width) { |
1759 | ret = atmci_init_slot(host, &pdata->slot[1], | 1759 | ret = atmci_init_slot(host, &pdata->slot[1], |
1760 | MCI_SDCSEL_SLOT_B, 1); | 1760 | 1, MCI_SDCSEL_SLOT_B); |
1761 | if (!ret) | 1761 | if (!ret) |
1762 | nr_slots++; | 1762 | nr_slots++; |
1763 | } | 1763 | } |