mirror of
https://xff.cz/git/u-boot/
synced 2025-09-22 02:52:13 +02: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:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user