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)
commit2b2bf6b7faa9010fae10dc7de76627a3fdb525b3
tree19975886d77e8306afa21727bc24119724faff1f
parentb90cb1053190353cc30f0fef0ef1f378ccc063c5
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: 1ab7f2a43558 ("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