Merge "ASoC: wcd-spi: ignore failure from clearing the CLK_REQUEST"

This commit is contained in:
Linux Build Service Account 2018-03-02 23:16:28 -08:00 committed by Gerrit - the friendly Code Review server
commit d72f26167d

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2016-2017, The Linux Foundation. All rights reserved.
* Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
@ -603,8 +603,11 @@ static int wcd_spi_clk_disable(struct spi_device *spi)
if (ret < 0)
dev_err(&spi->dev, "%s: Failed, err = %d\n",
__func__, ret);
else
clear_bit(WCD_SPI_CLK_STATE_ENABLED, &wcd_spi->status_mask);
/*
* clear this bit even if clock disable failed
* as the source clocks might get turned off.
*/
clear_bit(WCD_SPI_CLK_STATE_ENABLED, &wcd_spi->status_mask);
return ret;
}