Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 92df954d authored by Sangwook Lee's avatar Sangwook Lee Committed by Chris Ball
Browse files

ARM: SAMSUNG: Add pm_caps into platform data



Add pm_caps into platform_data. This is power management, usually
for SDIO device such as SDIO WLAN.

Signed-off-by: default avatarSangwook Lee <sangwook.lee@samsung.com>
Acked-by: default avatarKukjin Kim <kgene.kim@samsung.com>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent fa1773cc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -63,6 +63,7 @@ enum clk_types {
struct s3c_sdhci_platdata {
	unsigned int	max_width;
	unsigned int	host_caps;
	unsigned int	pm_caps;
	enum cd_types	cd_type;
	enum clk_types	clk_type;

+2 −0
Original line number Diff line number Diff line
@@ -53,6 +53,8 @@ void s3c_sdhci_set_platdata(struct s3c_sdhci_platdata *pd,
		set->cfg_gpio = pd->cfg_gpio;
	if (pd->host_caps)
		set->host_caps |= pd->host_caps;
	if (pd->pm_caps)
		set->pm_caps |= pd->pm_caps;
	if (pd->clk_type)
		set->clk_type = pd->clk_type;
}