mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
efi_loader: unnecessary assignment in efi_queue_event
The assigned value NULL is never used. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
30efb5dd43
commit
2b8568f461
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ static void efi_process_event_queue(void)
|
|||
*/
|
||||
static void efi_queue_event(struct efi_event *event)
|
||||
{
|
||||
struct efi_event *item = NULL;
|
||||
struct efi_event *item;
|
||||
|
||||
if (!event->notify_function)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue