ata: ahci-imx: remove redundant assignment to ret
authorColin Ian King <colin.king@canonical.com>
Sun, 5 Apr 2020 11:51:20 +0000 (12:51 +0100)
committerJens Axboe <axboe@kernel.dk>
Tue, 7 Apr 2020 20:49:45 +0000 (14:49 -0600)
commit3aadcf83820a8ae675a3ad88a6e889eb9638df7f
tree4db98f540eaf344a6bcdb2e73afaf71d357260b8
parent8305f72f952cff21ce8109dc1ea4b321c8efc5af
ata: ahci-imx: remove redundant assignment to 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.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/ata/ahci_imx.c