platform/x86: intel_punit_ipc: Drop useless label
There is no need to have a label to return an error code in one case. Moreover the other places in the same function do not utilize that label. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
ba367730ff
commit
fa2a590d0d
@ -294,14 +294,13 @@ static int intel_punit_ipc_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
ret = intel_punit_get_bars(pdev);
|
ret = intel_punit_get_bars(pdev);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out;
|
return ret;
|
||||||
|
|
||||||
punit_ipcdev->dev = &pdev->dev;
|
punit_ipcdev->dev = &pdev->dev;
|
||||||
mutex_init(&punit_ipcdev->lock);
|
mutex_init(&punit_ipcdev->lock);
|
||||||
init_completion(&punit_ipcdev->cmd_complete);
|
init_completion(&punit_ipcdev->cmd_complete);
|
||||||
|
|
||||||
out:
|
return 0;
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int intel_punit_ipc_remove(struct platform_device *pdev)
|
static int intel_punit_ipc_remove(struct platform_device *pdev)
|
||||||
|
Loading…
Reference in New Issue
Block a user