aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-04-01 07:21:55 +0200
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-04-01 10:11:50 +0200
commitdfd4288173245f0ea03df3e73cf62848c0212d98 (patch)
tree805c0e0179018ba244223c5f49be4911b841d30c
parenta9203b0fefca4627096779e4eb4b1efbea43ec35 (diff)
downloadu-boot-dfd4288173245f0ea03df3e73cf62848c0212d98.zip
u-boot-dfd4288173245f0ea03df3e73cf62848c0212d98.tar.gz
u-boot-dfd4288173245f0ea03df3e73cf62848c0212d98.tar.bz2
efi_loader: remove duplicate assignment
Assigning the value of a variable to itself should be avoided. Addresses-Coverity-ID: 451089 ("Evaluation order violation") Fixes: 180b7118bed8 ("efi_loader: fix device-path for USB devices") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-rw-r--r--lib/efi_loader/efi_device_path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_device_path.c b/lib/efi_loader/efi_device_path.c
index f35f673..8a65dda 100644
--- a/lib/efi_loader/efi_device_path.c
+++ b/lib/efi_loader/efi_device_path.c
@@ -740,7 +740,7 @@ __maybe_unused static void *dp_fill(void *buf, struct udevice *dev)
#endif
#if defined(CONFIG_USB)
case UCLASS_MASS_STORAGE: {
- struct blk_desc *desc = desc = dev_get_uclass_plat(dev);
+ struct blk_desc *desc = dev_get_uclass_plat(dev);
struct efi_device_path_controller *dp =
dp_fill(buf, dev->parent);