of: unittest: Drop if blocks with always false condition
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sun, 19 Mar 2023 10:06:19 +0000 (11:06 +0100)
committerRob Herring <robh@kernel.org>
Mon, 20 Mar 2023 19:59:08 +0000 (14:59 -0500)
commit13cd9ac670df5e052d3a31ae21bb1787202870dd
tree4d0254e501c76fcef292c6d86de7d1ef948a7f68
parent5cdade2d77dd41a2ed98967c3887f5d66a4d23c4
of: unittest: Drop if blocks with always false condition

unittest_gpio_remove() is only called after unittest_gpio_probe() completed
successfully. In this case driver data was set to a non-NULL value and so
platform_get_drvdata() never returns NULL.

Also note that the compiler might optimize away this check anyhow as
devptr was already dereferenced for the dev_dbg call above.

Drop this if block.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20230319100620.295849-3-u.kleine-koenig@pengutronix.de
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/unittest.c