diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-06-11 17:30:14 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-06-11 18:15:48 +0300 |
commit | 8d20319e29796c86dd4be26024219c52748fb6bd (patch) | |
tree | 3dfebb800c100e07fb432c749a8a0ec1a44241a0 /drivers/block | |
parent | 819f7b88b48fd2bce932cfe3a38bf8fcefbcabe7 (diff) | |
download | linux-8d20319e29796c86dd4be26024219c52748fb6bd.tar.xz |
pktcdvd: remove redundant initialization of variable ret
The variable ret is being initialized with a value that is never read
and it is being updated later with a new value. The initialization is
redundant and can be removed.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Addresses-Coverity: ("Unused value")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/pktcdvd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/pktcdvd.c b/drivers/block/pktcdvd.c index 0b944ac96d6b..27a33adc41e4 100644 --- a/drivers/block/pktcdvd.c +++ b/drivers/block/pktcdvd.c @@ -1613,7 +1613,7 @@ static noinline_for_stack int pkt_get_last_written(struct pktcdvd_device *pd, disc_information di; track_information ti; __u32 last_track; - int ret = -1; + int ret; ret = pkt_get_disc_info(pd, &di); if (ret) |