diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2015-02-04 15:48:40 +0900 |
---|---|---|
committer | Pantelis Antoniou <pantelis.antoniou@konsulko.com> | 2015-02-23 19:39:51 +0200 |
commit | 5dab81cea5500558b7bfc43a7364ae7ed706d2fc (patch) | |
tree | 6c1ab4c9b6aa293f03ff29a1bc20ac3c9c3ea719 /include | |
parent | 3a33bb1874a75abde8872915f808945b6d20f6f2 (diff) | |
download | u-boot-imx-5dab81cea5500558b7bfc43a7364ae7ed706d2fc.zip u-boot-imx-5dab81cea5500558b7bfc43a7364ae7ed706d2fc.tar.gz u-boot-imx-5dab81cea5500558b7bfc43a7364ae7ed706d2fc.tar.bz2 |
mmc: exynos_dw_mmc: use the exynos specific data structure
Clksel value is exynos specific value.
It removed "clksel_val" into dwmci_host and created the
"dwmci_exynos_priv_data" structure for exynos specific data.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/dwmmc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dwmmc.h b/include/dwmmc.h index 109f7c8..86a5491 100644 --- a/include/dwmmc.h +++ b/include/dwmmc.h @@ -141,9 +141,9 @@ struct dwmci_host { int dev_index; int dev_id; int buswidth; - u32 clksel_val; u32 fifoth_val; struct mmc *mmc; + void *priv; void (*clksel)(struct dwmci_host *host); void (*board_init)(struct dwmci_host *host); |