sdhci-dove.c (03231f9b781f24205c0af0398ce3cbef70090939) | sdhci-dove.c (1771059cf5f9c09e37ef6315df8acf120f2642fc) |
---|---|
1/* 2 * sdhci-dove.c Support for SDHCI on Marvell's Dove SoC 3 * 4 * Author: Saeed Bishara <saeed@marvell.com> 5 * Mike Rapoport <mike@compulab.co.il> 6 * Based on sdhci-cns3xxx.c 7 * 8 * This program is free software; you can redistribute it and/or modify --- 72 unchanged lines hidden (view full) --- 81 break; 82 } 83 return ret; 84} 85 86static const struct sdhci_ops sdhci_dove_ops = { 87 .read_w = sdhci_dove_readw, 88 .read_l = sdhci_dove_readl, | 1/* 2 * sdhci-dove.c Support for SDHCI on Marvell's Dove SoC 3 * 4 * Author: Saeed Bishara <saeed@marvell.com> 5 * Mike Rapoport <mike@compulab.co.il> 6 * Based on sdhci-cns3xxx.c 7 * 8 * This program is free software; you can redistribute it and/or modify --- 72 unchanged lines hidden (view full) --- 81 break; 82 } 83 return ret; 84} 85 86static const struct sdhci_ops sdhci_dove_ops = { 87 .read_w = sdhci_dove_readw, 88 .read_l = sdhci_dove_readl, |
89 .set_clock = sdhci_set_clock, |
|
89 .set_bus_width = sdhci_set_bus_width, 90 .reset = sdhci_reset, 91}; 92 93static const struct sdhci_pltfm_data sdhci_dove_pdata = { 94 .ops = &sdhci_dove_ops, 95 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER | 96 SDHCI_QUIRK_NO_BUSY_IRQ | --- 128 unchanged lines hidden --- | 90 .set_bus_width = sdhci_set_bus_width, 91 .reset = sdhci_reset, 92}; 93 94static const struct sdhci_pltfm_data sdhci_dove_pdata = { 95 .ops = &sdhci_dove_ops, 96 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER | 97 SDHCI_QUIRK_NO_BUSY_IRQ | --- 128 unchanged lines hidden --- |