/*1* Copyright 2010 MontaVista Software, LLC.2*3* Author: Anton Vorontsov <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License version 2 as7* published by the Free Software Foundation.8*/910#ifndef _DRIVERS_MMC_SDHCI_PLTFM_H11#define _DRIVERS_MMC_SDHCI_PLTFM_H1213#include <linux/clk.h>14#include <linux/types.h>15#include <linux/mmc/sdhci-pltfm.h>1617struct sdhci_pltfm_host {18struct clk *clk;19void *priv; /* to handle quirks across io-accessor calls */20};2122extern struct sdhci_pltfm_data sdhci_cns3xxx_pdata;23extern struct sdhci_pltfm_data sdhci_esdhc_imx_pdata;24extern struct sdhci_pltfm_data sdhci_dove_pdata;25extern struct sdhci_pltfm_data sdhci_tegra_pdata;2627#endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */282930