diff options
author | Uwe Kleine-König <uwe@kleine-koenig.org> | 2021-01-27 01:14:44 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-02-09 14:16:20 +0300 |
commit | b2c852f490e086e0683d929d8eb75ccae068bd7b (patch) | |
tree | 4e62ca12b0d27fe3a2ed4b64a1ab160f4ded84b9 /drivers/firewire | |
parent | 2adc75fba3289455b9c4349dd6b95cfb7167b7ea (diff) | |
download | linux-b2c852f490e086e0683d929d8eb75ccae068bd7b.tar.xz |
firewire: replace tricky statement by two simple ones
struct fw_driver::remove returns void, still the comma expression's value
is zero. This is harder to parse than necessary, so replace the single
expression by two easier ones.
Signed-off-by: Uwe Kleine-König <uwe@kleine-koenig.org>
Link: https://lore.kernel.org/r/20210126221444.713837-1-uwe@kleine-koenig.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/core-device.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/firewire/core-device.c b/drivers/firewire/core-device.c index 80db43a22069..68216988391f 100644 --- a/drivers/firewire/core-device.c +++ b/drivers/firewire/core-device.c @@ -192,7 +192,9 @@ static int fw_unit_remove(struct device *dev) struct fw_driver *driver = container_of(dev->driver, struct fw_driver, driver); - return driver->remove(fw_unit(dev)), 0; + driver->remove(fw_unit(dev)); + + return 0; } static int get_modalias(struct fw_unit *unit, char *buffer, size_t buffer_size) |