aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/ahci_st.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>2014-03-14 14:20:58 -0400
committerTejun Heo <tj@kernel.org>2014-03-14 14:26:29 -0400
commit33081b34681742add8d8c1e49fc93045415e5a18 (patch)
treed99e5f0f73f2714a575621ca0b16543bf481329a /drivers/ata/ahci_st.c
parentd920203695029558ef16925182f89cf6302b50b0 (diff)
ata: ahci_st: build fixes
* The config option for ahci_st driver was renamed from CONFIG_SATA_AHCI_ST to CONFIG_AHCI_ST but Makefile was not updated. Fix it (also while at it move the ahci_st driver entry below ahci_imx and ahci_sunxi ones). * Fix a few build issues in the ahci_st driver itself. Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/ahci_st.c')
-rw-r--r--drivers/ata/ahci_st.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/ata/ahci_st.c b/drivers/ata/ahci_st.c
index 17191b96648e..e1aa5447a400 100644
--- a/drivers/ata/ahci_st.c
+++ b/drivers/ata/ahci_st.c
@@ -87,7 +87,7 @@ static int st_ahci_deassert_resets(struct device *dev)
87 return 0; 87 return 0;
88} 88}
89 89
90static int st_ahci_exit(struct device *dev) 90static void st_ahci_exit(struct device *dev)
91{ 91{
92 struct st_ahci_drv_data *drv_data = dev_get_drvdata(dev); 92 struct st_ahci_drv_data *drv_data = dev_get_drvdata(dev);
93 struct ahci_host_priv *hpriv = drv_data->hpriv; 93 struct ahci_host_priv *hpriv = drv_data->hpriv;
@@ -96,12 +96,10 @@ static int st_ahci_exit(struct device *dev)
96 if (drv_data->pwr) { 96 if (drv_data->pwr) {
97 err = reset_control_assert(drv_data->pwr); 97 err = reset_control_assert(drv_data->pwr);
98 if (err) 98 if (err)
99 dev_err(&pdev->dev, "unable to pwrdwn\n"); 99 dev_err(dev, "unable to pwrdwn\n");
100 } 100 }
101 101
102 ahci_platform_disable_resources(hpriv); 102 ahci_platform_disable_resources(hpriv);
103
104 return 0;
105} 103}
106 104
107static int st_ahci_probe_resets(struct platform_device *pdev) 105static int st_ahci_probe_resets(struct platform_device *pdev)
@@ -186,9 +184,9 @@ static int st_ahci_suspend(struct device *dev)
186 struct ahci_host_priv *hpriv = drv_data->hpriv; 184 struct ahci_host_priv *hpriv = drv_data->hpriv;
187 int err; 185 int err;
188 186
189 ret = ahci_platform_suspend_host(dev); 187 err = ahci_platform_suspend_host(dev);
190 if (ret) 188 if (err)
191 return ret; 189 return err;
192 190
193 if (drv_data->pwr) { 191 if (drv_data->pwr) {
194 err = reset_control_assert(drv_data->pwr); 192 err = reset_control_assert(drv_data->pwr);