mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 13:44:29 +08:00
ARM: Odroid XU3: Fix the dwmci_exynos *priv data assignment for DM_MMC (sdr_timing)
By convention for DM_MMC the host->priv is used to store struct udevice *dev pointer. Unfortunately, the legacy Exynos DW MMC code uses this field to store pointer to dwmci_exynos_priv_data struct Hence, we do need to get data in other way - namely by using container_of when host pointer is present. In this way the sdr_timing data is properly accessed. Signed-off-by: Lukasz Majewski <lukma@denx.de> Tested-by: Anand Moon <linux.amoon@gmail.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
54a1352a0d
commit
7c350a2a0f
@ -46,8 +46,12 @@ struct dwmci_exynos_priv_data {
|
||||
*/
|
||||
static void exynos_dwmci_clksel(struct dwmci_host *host)
|
||||
{
|
||||
#ifdef CONFIG_DM_MMC
|
||||
struct dwmci_exynos_priv_data *priv =
|
||||
container_of(host, struct dwmci_exynos_priv_data, host);
|
||||
#else
|
||||
struct dwmci_exynos_priv_data *priv = host->priv;
|
||||
|
||||
#endif
|
||||
dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user