From: Colin Ian King Date: Thu, 3 Mar 2022 08:58:41 +0000 (+0000) Subject: bcma: gpio: remove redundant re-assignment of chip->owner X-Git-Tag: v5.18-rc1~136^2~110^2~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=857f837d856a5d78bb475b50524f03fd6d458960;p=thirdparty%2Fkernel%2Flinux.git bcma: gpio: remove redundant re-assignment of chip->owner There are two identical assignments of chip->owner to the same value, the second assignment is redundant and can be removed. Cleans up cppcheck warning: drivers/bcma/driver_gpio.c:184:15: style: Variable 'chip->owner' is reassigned a value before the old one has been used. [redundantAssignment] Signed-off-by: Colin Ian King Signed-off-by: Kalle Valo Link: https://lore.kernel.org/r/20220303085841.1124766-1-colin.i.king@gmail.com --- diff --git a/drivers/bcma/driver_gpio.c b/drivers/bcma/driver_gpio.c index 8a1e4705bc873..1e74ec1c7f231 100644 --- a/drivers/bcma/driver_gpio.c +++ b/drivers/bcma/driver_gpio.c @@ -181,7 +181,6 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) chip->set = bcma_gpio_set_value; chip->direction_input = bcma_gpio_direction_input; chip->direction_output = bcma_gpio_direction_output; - chip->owner = THIS_MODULE; chip->parent = bus->dev; #if IS_BUILTIN(CONFIG_OF) chip->of_node = cc->core->dev.of_node;