summaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorManish Narani <manish.narani@xilinx.com>2020-04-06 23:13:32 +0530
committerUlf Hansson <ulf.hansson@linaro.org>2020-05-28 11:20:57 +0200
commit19ee441f2cab760921b15df11cb7ea2fb4751567 (patch)
tree3cb7ad6a0f8e9e6120bae4ffd07292dffdd94ab2 /drivers/mmc
parent1a470721c8f5a73e272fffb590debda5e65a2eaf (diff)
downloadlinux-19ee441f2cab760921b15df11cb7ea2fb4751567.tar.bz2
mmc: sdhci-of-arasan: Rename sdhci_arasan_data to avoid confusion
There is 'struct sdhci_arasan_data' but also 'struct sdhci_arasan_of_data sdhci_arasan_data'. Rename the latter to avoid confusion with the name of the struct. Reported-by: Adrian Hunter <adrian.hunter@intel.com> Signed-off-by: Manish Narani <manish.narani@xilinx.com> Link: https://lore.kernel.org/r/1586195015-128992-4-git-send-email-manish.narani@xilinx.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/sdhci-of-arasan.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c
index 9e2ea3b813b3..51e134713631 100644
--- a/drivers/mmc/host/sdhci-of-arasan.c
+++ b/drivers/mmc/host/sdhci-of-arasan.c
@@ -354,7 +354,7 @@ static const struct sdhci_pltfm_data sdhci_arasan_pdata = {
SDHCI_QUIRK2_STOP_WITH_TC,
};
-static struct sdhci_arasan_of_data sdhci_arasan_data = {
+static struct sdhci_arasan_of_data sdhci_arasan_generic_data = {
.pdata = &sdhci_arasan_pdata,
};
@@ -552,15 +552,15 @@ static const struct of_device_id sdhci_arasan_of_match[] = {
/* Generic compatible below here */
{
.compatible = "arasan,sdhci-8.9a",
- .data = &sdhci_arasan_data,
+ .data = &sdhci_arasan_generic_data,
},
{
.compatible = "arasan,sdhci-5.1",
- .data = &sdhci_arasan_data,
+ .data = &sdhci_arasan_generic_data,
},
{
.compatible = "arasan,sdhci-4.9a",
- .data = &sdhci_arasan_data,
+ .data = &sdhci_arasan_generic_data,
},
{
.compatible = "xlnx,zynqmp-8.9a",