mmc: sdhci-pxav3: add quirks2
Acked-by: Zhangfei Gao <zhangfei.gao@marvell.com> Signed-off-by: Kevin Liu <kliu5@marvell.com> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
parent
cec2e216f7
commit
7c52d7bb87
2 changed files with 4 additions and 0 deletions
|
@ -280,6 +280,8 @@ static int __devinit sdhci_pxav3_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
if (pdata->quirks)
|
if (pdata->quirks)
|
||||||
host->quirks |= pdata->quirks;
|
host->quirks |= pdata->quirks;
|
||||||
|
if (pdata->quirks2)
|
||||||
|
host->quirks2 |= pdata->quirks2;
|
||||||
if (pdata->host_caps)
|
if (pdata->host_caps)
|
||||||
host->mmc->caps |= pdata->host_caps;
|
host->mmc->caps |= pdata->host_caps;
|
||||||
if (pdata->host_caps2)
|
if (pdata->host_caps2)
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
* @max_speed: the maximum speed supported
|
* @max_speed: the maximum speed supported
|
||||||
* @host_caps: Standard MMC host capabilities bit field.
|
* @host_caps: Standard MMC host capabilities bit field.
|
||||||
* @quirks: quirks of platfrom
|
* @quirks: quirks of platfrom
|
||||||
|
* @quirks2: quirks2 of platfrom
|
||||||
* @pm_caps: pm_caps of platfrom
|
* @pm_caps: pm_caps of platfrom
|
||||||
*/
|
*/
|
||||||
struct sdhci_pxa_platdata {
|
struct sdhci_pxa_platdata {
|
||||||
|
@ -51,6 +52,7 @@ struct sdhci_pxa_platdata {
|
||||||
u32 host_caps;
|
u32 host_caps;
|
||||||
u32 host_caps2;
|
u32 host_caps2;
|
||||||
unsigned int quirks;
|
unsigned int quirks;
|
||||||
|
unsigned int quirks2;
|
||||||
unsigned int pm_caps;
|
unsigned int pm_caps;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue