]> git.baikalelectronics.ru Git - kernel.git/commit
spi: mt7621: Fix an error message in mt7621_spi_probe()
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 27 Aug 2022 11:42:07 +0000 (13:42 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 29 Aug 2022 16:51:36 +0000 (17:51 +0100)
commit622391f37c18936b392e38e6cafdbe6efb0bd689
tree19975886d77e8306afa21727bc24119724faff1f
parent63433aa6d0e739cf2afad75742003c018cf3cb74
spi: mt7621: Fix an error message in mt7621_spi_probe()

'status' is known to be 0 at this point. The expected error code is
PTR_ERR(clk).

Switch to dev_err_probe() in order to display the expected error code (in a
human readable way).
This also filters -EPROBE_DEFER cases, should it happen.

Fixes: 7f699088bda3 ("staging: mt7621-spi: add mt7621 support")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
Link: https://lore.kernel.org/r/928f3fb507d53ba0774df27cea0bbba4b055993b.1661599671.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-mt7621.c