remoteproc: stm32: Clean up redundant dev_err_probe()
authorChen Jiahao <chenjiahao16@huawei.com>
Thu, 17 Aug 2023 08:33:36 +0000 (16:33 +0800)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Wed, 13 Sep 2023 16:21:37 +0000 (10:21 -0600)
commit99f998733dac8b84b96981bf170d39ec721d5b97
tree10f345b431cbb29bbae15c976c8b8040b831a93b
parent0bb80ecc33a8fb5a682236443c1e740d5c917d1d
remoteproc: stm32: Clean up redundant dev_err_probe()

Referring to platform_get_irq()'s definition, the return value has
already been checked if ret < 0, and printed via dev_err_probe().
Calling dev_err_probe() one more time outside platform_get_irq()
is obviously redundant. Removing outside dev_err_probe() to
clean it up.

Besides, switch to use platform_get_irq_optional() since the irq
is optional here.

Signed-off-by: Chen Jiahao <chenjiahao16@huawei.com>
Acked-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
Link: https://lore.kernel.org/r/20230817083336.404635-1-chenjiahao16@huawei.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
drivers/remoteproc/stm32_rproc.c