Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1583778
| From | Alexey Khoroshilov <khoroshilov@ispras.ru> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] mtd: spi-nor: hisi: do not ignore clk_prepare_enable() failure |
| Date | 2017-02-17 23:20 +0100 |
| Message-ID | <tbZ2F-1LE-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
hisi_spi_nor_probe() ignores clk_prepare_enable() error code. The patch fixes that. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Alexey Khoroshilov <khoroshilov@ispras.ru> --- drivers/mtd/spi-nor/hisi-sfc.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/mtd/spi-nor/hisi-sfc.c b/drivers/mtd/spi-nor/hisi-sfc.c index 20378b0d55e9..a286350627a6 100644 --- a/drivers/mtd/spi-nor/hisi-sfc.c +++ b/drivers/mtd/spi-nor/hisi-sfc.c @@ -448,8 +448,11 @@ static int hisi_spi_nor_probe(struct platform_device *pdev) if (!host->buffer) return -ENOMEM; + ret = clk_prepare_enable(host->clk); + if (ret) + return ret; + mutex_init(&host->lock); - clk_prepare_enable(host->clk); hisi_spi_nor_init(host); ret = hisi_spi_nor_register_all(host); if (ret) -- 2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] mtd: spi-nor: hisi: do not ignore clk_prepare_enable() failure Alexey Khoroshilov <khoroshilov@ispras.ru> - 2017-02-17 23:20 +0100 Re: [PATCH] mtd: spi-nor: hisi: do not ignore clk_prepare_enable() failure Marek Vasut <marek.vasut@gmail.com> - 2017-02-18 16:30 +0100
csiph-web