aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBastian Hecht <hechtb@googlemail.com>2012-03-16 12:19:29 -0400
committerChris Ball <cjb@laptop.org>2012-03-27 12:20:19 -0400
commite82b4ac94e5c43fad51b975aed058858ceda1f0f (patch)
tree40c1f770d227f109c6d11c7b23ef20638beea406 /include
parent4932bd64a2bb4e80b79efb20c4736ac3b30ba7fe (diff)
downloadlinux-hpc-e82b4ac94e5c43fad51b975aed058858ceda1f0f.tar.gz
mmc: sh_mobile_sdhi: add a callback for board specific init code
Some boards need a preliminary setup stage to prepare the sdhi controller. Signed-off-by: Bastian Hecht <hechtb@gmail.com> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mmc/sh_mobile_sdhi.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/mmc/sh_mobile_sdhi.h b/include/linux/mmc/sh_mobile_sdhi.h
index 082a736a9bfb3e..686b85bfb7a5d5 100644
--- a/include/linux/mmc/sh_mobile_sdhi.h
+++ b/include/linux/mmc/sh_mobile_sdhi.h
@@ -20,6 +20,10 @@ struct sh_mobile_sdhi_info {
struct tmio_mmc_data *pdata;
void (*set_pwr)(struct platform_device *pdev, int state);
int (*get_cd)(struct platform_device *pdev);
+
+ /* callbacks for board specific setup code */
+ int (*init)(struct platform_device *pdev);
+ void (*cleanup)(struct platform_device *pdev);
};
#endif /* LINUX_MMC_SH_MOBILE_SDHI_H */