sdhci-spear.c (03231f9b781f24205c0af0398ce3cbef70090939) | sdhci-spear.c (1771059cf5f9c09e37ef6315df8acf120f2642fc) |
---|---|
1/* 2 * drivers/mmc/host/sdhci-spear.c 3 * 4 * Support of SDHCI platform devices for spear soc family 5 * 6 * Copyright (C) 2010 ST Microelectronics 7 * Viresh Kumar <viresh.linux@gmail.com> 8 * --- 24 unchanged lines hidden (view full) --- 33 34struct spear_sdhci { 35 struct clk *clk; 36 struct sdhci_plat_data *data; 37}; 38 39/* sdhci ops */ 40static const struct sdhci_ops sdhci_pltfm_ops = { | 1/* 2 * drivers/mmc/host/sdhci-spear.c 3 * 4 * Support of SDHCI platform devices for spear soc family 5 * 6 * Copyright (C) 2010 ST Microelectronics 7 * Viresh Kumar <viresh.linux@gmail.com> 8 * --- 24 unchanged lines hidden (view full) --- 33 34struct spear_sdhci { 35 struct clk *clk; 36 struct sdhci_plat_data *data; 37}; 38 39/* sdhci ops */ 40static const struct sdhci_ops sdhci_pltfm_ops = { |
41 .set_clock = sdhci_set_clock, |
|
41 .set_bus_width = sdhci_set_bus_width, 42 .reset = sdhci_reset, 43}; 44 45#ifdef CONFIG_OF 46static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev) 47{ 48 struct device_node *np = pdev->dev.of_node; --- 195 unchanged lines hidden --- | 42 .set_bus_width = sdhci_set_bus_width, 43 .reset = sdhci_reset, 44}; 45 46#ifdef CONFIG_OF 47static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev) 48{ 49 struct device_node *np = pdev->dev.of_node; --- 195 unchanged lines hidden --- |