mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-31 11:31:32 +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)
|
static void efi_queue_event(struct efi_event *event)
|
||||||
{
|
{
|
||||||
struct efi_event *item = NULL;
|
struct efi_event *item;
|
||||||
|
|
||||||
if (!event->notify_function)
|
if (!event->notify_function)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue