aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMinghao Chi <chi.minghao@zte.com.cn>2022-05-05 02:21:33 +0000
committerDamien Le Moal <damien.lemoal@opensource.wdc.com>2022-05-09 20:36:00 +0900
commitec194bdbc5f9268db15832ccc6699be4728101c9 (patch)
tree0e18dd9f297c7e4f2cf9d67cd77c168654a56b4a
parentata: Make use of the helper function devm_platform_ioremap_resource() (diff)
downloadlinux-dev-ec194bdbc5f9268db15832ccc6699be4728101c9.tar.xz
linux-dev-ec194bdbc5f9268db15832ccc6699be4728101c9.zip
ata: simplify the return expression of brcm_ahci_remove
Simplify the return expression. Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn> Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
-rw-r--r--drivers/ata/ahci_brcm.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/ata/ahci_brcm.c b/drivers/ata/ahci_brcm.c
index ab8552b1ff2a..f61795c546cf 100644
--- a/drivers/ata/ahci_brcm.c
+++ b/drivers/ata/ahci_brcm.c
@@ -549,15 +549,10 @@ static int brcm_ahci_remove(struct platform_device *pdev)
struct ata_host *host = dev_get_drvdata(&pdev->dev);
struct ahci_host_priv *hpriv = host->private_data;
struct brcm_ahci_priv *priv = hpriv->plat_data;
- int ret;
brcm_sata_phys_disable(priv);
- ret = ata_platform_remove_one(pdev);
- if (ret)
- return ret;
-
- return 0;
+ return ata_platform_remove_one(pdev);
}
static void brcm_ahci_shutdown(struct platform_device *pdev)