mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-27 03:47:43 +00:00
can: ti_hecc: add missing prepare and unprepare of the clock
In order to make the driver work with the common clock framework, this patch converts the clk_enable()/clk_disable() to clk_prepare_enable()/clk_disable_unprepare(). Also add error checking for clk_prepare_enable(). Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Cc: linux-stable <stable@vger.kernel.org> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
c97c52be78
commit
befa60113c
@ -948,7 +948,12 @@ static int ti_hecc_probe(struct platform_device *pdev)
|
|||||||
netif_napi_add(ndev, &priv->napi, ti_hecc_rx_poll,
|
netif_napi_add(ndev, &priv->napi, ti_hecc_rx_poll,
|
||||||
HECC_DEF_NAPI_WEIGHT);
|
HECC_DEF_NAPI_WEIGHT);
|
||||||
|
|
||||||
clk_enable(priv->clk);
|
err = clk_prepare_enable(priv->clk);
|
||||||
|
if (err) {
|
||||||
|
dev_err(&pdev->dev, "clk_prepare_enable() failed\n");
|
||||||
|
goto probe_exit_clk;
|
||||||
|
}
|
||||||
|
|
||||||
err = register_candev(ndev);
|
err = register_candev(ndev);
|
||||||
if (err) {
|
if (err) {
|
||||||
dev_err(&pdev->dev, "register_candev() failed\n");
|
dev_err(&pdev->dev, "register_candev() failed\n");
|
||||||
@ -981,7 +986,7 @@ static int ti_hecc_remove(struct platform_device *pdev)
|
|||||||
struct ti_hecc_priv *priv = netdev_priv(ndev);
|
struct ti_hecc_priv *priv = netdev_priv(ndev);
|
||||||
|
|
||||||
unregister_candev(ndev);
|
unregister_candev(ndev);
|
||||||
clk_disable(priv->clk);
|
clk_disable_unprepare(priv->clk);
|
||||||
clk_put(priv->clk);
|
clk_put(priv->clk);
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
iounmap(priv->base);
|
iounmap(priv->base);
|
||||||
@ -1006,7 +1011,7 @@ static int ti_hecc_suspend(struct platform_device *pdev, pm_message_t state)
|
|||||||
hecc_set_bit(priv, HECC_CANMC, HECC_CANMC_PDR);
|
hecc_set_bit(priv, HECC_CANMC, HECC_CANMC_PDR);
|
||||||
priv->can.state = CAN_STATE_SLEEPING;
|
priv->can.state = CAN_STATE_SLEEPING;
|
||||||
|
|
||||||
clk_disable(priv->clk);
|
clk_disable_unprepare(priv->clk);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -1015,8 +1020,11 @@ static int ti_hecc_resume(struct platform_device *pdev)
|
|||||||
{
|
{
|
||||||
struct net_device *dev = platform_get_drvdata(pdev);
|
struct net_device *dev = platform_get_drvdata(pdev);
|
||||||
struct ti_hecc_priv *priv = netdev_priv(dev);
|
struct ti_hecc_priv *priv = netdev_priv(dev);
|
||||||
|
int err;
|
||||||
|
|
||||||
clk_enable(priv->clk);
|
err = clk_prepare_enable(priv->clk);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
hecc_clear_bit(priv, HECC_CANMC, HECC_CANMC_PDR);
|
hecc_clear_bit(priv, HECC_CANMC, HECC_CANMC_PDR);
|
||||||
priv->can.state = CAN_STATE_ERROR_ACTIVE;
|
priv->can.state = CAN_STATE_ERROR_ACTIVE;
|
||||||
|
Loading…
Reference in New Issue
Block a user