diff options
author | Heinrich Schuchardt | 2018-09-30 13:40:43 +0200 |
---|---|---|
committer | Alexander Graf | 2018-10-16 16:44:26 +0200 |
commit | 4f37fa470f440aaed392b640557a88113167ea86 (patch) | |
tree | a89783ce9b73953f7c9bf051c64c6ded06998746 | |
parent | 819c80f528f8529bb88d912efb141f5fd0ecef53 (diff) |
efi_loader: fix typo in efi_boottime.c
%s/conncected/connected/
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 6a07c361478..da978d2b34a 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -2506,7 +2506,7 @@ static efi_status_t efi_protocol_open( if (item->info.attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) opened_by_driver = true; } - /* Only one controller can be conncected */ + /* Only one controller can be connected */ if (opened_by_driver) return EFI_ACCESS_DENIED; } |