Commit 1c86f2e4 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'hwmon-for-linus-v4.14-rc4' of...

Merge tag 'hwmon-for-linus-v4.14-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull hwmon fix from Guenter Roeck:
 "Fix up error path in xgene driver"

* tag 'hwmon-for-linus-v4.14-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
  hwmon: (xgene) Fix up error handling path mixup in 'xgene_hwmon_probe()'
parents dbeb1a8f 74007ae6
...@@ -630,7 +630,7 @@ static int xgene_hwmon_probe(struct platform_device *pdev) ...@@ -630,7 +630,7 @@ static int xgene_hwmon_probe(struct platform_device *pdev)
sizeof(struct slimpro_resp_msg) * ASYNC_MSG_FIFO_SIZE, sizeof(struct slimpro_resp_msg) * ASYNC_MSG_FIFO_SIZE,
GFP_KERNEL); GFP_KERNEL);
if (rc) if (rc)
goto out_mbox_free; return -ENOMEM;
INIT_WORK(&ctx->workq, xgene_hwmon_evt_work); INIT_WORK(&ctx->workq, xgene_hwmon_evt_work);
...@@ -646,7 +646,8 @@ static int xgene_hwmon_probe(struct platform_device *pdev) ...@@ -646,7 +646,8 @@ static int xgene_hwmon_probe(struct platform_device *pdev)
if (IS_ERR(ctx->mbox_chan)) { if (IS_ERR(ctx->mbox_chan)) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"SLIMpro mailbox channel request failed\n"); "SLIMpro mailbox channel request failed\n");
return -ENODEV; rc = -ENODEV;
goto out_mbox_free;
} }
} else { } else {
struct acpi_pcct_hw_reduced *cppc_ss; struct acpi_pcct_hw_reduced *cppc_ss;
...@@ -654,7 +655,8 @@ static int xgene_hwmon_probe(struct platform_device *pdev) ...@@ -654,7 +655,8 @@ static int xgene_hwmon_probe(struct platform_device *pdev)
if (device_property_read_u32(&pdev->dev, "pcc-channel", if (device_property_read_u32(&pdev->dev, "pcc-channel",
&ctx->mbox_idx)) { &ctx->mbox_idx)) {
dev_err(&pdev->dev, "no pcc-channel property\n"); dev_err(&pdev->dev, "no pcc-channel property\n");
return -ENODEV; rc = -ENODEV;
goto out_mbox_free;
} }
cl->rx_callback = xgene_hwmon_pcc_rx_cb; cl->rx_callback = xgene_hwmon_pcc_rx_cb;
...@@ -662,7 +664,8 @@ static int xgene_hwmon_probe(struct platform_device *pdev) ...@@ -662,7 +664,8 @@ static int xgene_hwmon_probe(struct platform_device *pdev)
if (IS_ERR(ctx->mbox_chan)) { if (IS_ERR(ctx->mbox_chan)) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"PPC channel request failed\n"); "PPC channel request failed\n");
return -ENODEV; rc = -ENODEV;
goto out_mbox_free;
} }
/* /*
...@@ -675,13 +678,13 @@ static int xgene_hwmon_probe(struct platform_device *pdev) ...@@ -675,13 +678,13 @@ static int xgene_hwmon_probe(struct platform_device *pdev)
if (!cppc_ss) { if (!cppc_ss) {
dev_err(&pdev->dev, "PPC subspace not found\n"); dev_err(&pdev->dev, "PPC subspace not found\n");
rc = -ENODEV; rc = -ENODEV;
goto out_mbox_free; goto out;
} }
if (!ctx->mbox_chan->mbox->txdone_irq) { if (!ctx->mbox_chan->mbox->txdone_irq) {
dev_err(&pdev->dev, "PCC IRQ not supported\n"); dev_err(&pdev->dev, "PCC IRQ not supported\n");
rc = -ENODEV; rc = -ENODEV;
goto out_mbox_free; goto out;
} }
/* /*
...@@ -696,14 +699,14 @@ static int xgene_hwmon_probe(struct platform_device *pdev) ...@@ -696,14 +699,14 @@ static int xgene_hwmon_probe(struct platform_device *pdev)
} else { } else {
dev_err(&pdev->dev, "Failed to get PCC comm region\n"); dev_err(&pdev->dev, "Failed to get PCC comm region\n");
rc = -ENODEV; rc = -ENODEV;
goto out_mbox_free; goto out;
} }
if (!ctx->pcc_comm_addr) { if (!ctx->pcc_comm_addr) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"Failed to ioremap PCC comm region\n"); "Failed to ioremap PCC comm region\n");
rc = -ENOMEM; rc = -ENOMEM;
goto out_mbox_free; goto out;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment