Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mmc: sdhci-of-arasan: Change code style of mapping the syscon field

Change code style of mapping the syscon in sdhci_arasan_update_support64b()
for readability and consistency.

Signed-off-by: Muhammad Husaini Zulkifli <muhammad.husaini.zulkifli@intel.com>
Acked-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Link: https://lore.kernel.org/r/20210111155001.12307-3-muhammad.husaini.zulkifli@intel.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

authored by

Muhammad Husaini Zulkifli and committed by
Ulf Hansson
db845093 973c7c99

+2 -2
+2 -2
drivers/mmc/host/sdhci-of-arasan.c
··· 1395 1395 { 1396 1396 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); 1397 1397 struct sdhci_arasan_data *sdhci_arasan = sdhci_pltfm_priv(pltfm_host); 1398 - const struct sdhci_arasan_soc_ctl_map *soc_ctl_map = 1399 - sdhci_arasan->soc_ctl_map; 1398 + const struct sdhci_arasan_soc_ctl_map *soc_ctl_map; 1400 1399 1401 1400 /* Having a map is optional */ 1401 + soc_ctl_map = sdhci_arasan->soc_ctl_map; 1402 1402 if (!soc_ctl_map) 1403 1403 return; 1404 1404