efi_loader: remove redundant assignment in dp_fill()
The value of dp is overwritten without being used. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
b37a0b5c89
commit
549b79e8e0
1 changed files with 1 additions and 1 deletions
|
@ -530,7 +530,7 @@ __maybe_unused static void *dp_fill(void *buf, struct udevice *dev)
|
|||
#ifdef CONFIG_SANDBOX
|
||||
case UCLASS_ROOT: {
|
||||
/* stop traversing parents at this point: */
|
||||
struct efi_device_path_vendor *dp = buf;
|
||||
struct efi_device_path_vendor *dp;
|
||||
struct blk_desc *desc = dev_get_uclass_platdata(dev);
|
||||
|
||||
dp_fill(buf, dev->parent);
|
||||
|
|
Loading…
Reference in a new issue