aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-09-08 10:20:10 +0200
committerAlexander Graf <agraf@suse.de>2018-09-23 21:55:29 +0200
commit3e603ec757bee9ce84c7bbc861c7b0fe2f4d9bef (patch)
treef77070e911fa03796c1b024eca438967b0d82711 /drivers
parentda9ea5bb0d9c5024d74b9614e2c420858adbf32e (diff)
downloadu-boot-3e603ec757bee9ce84c7bbc861c7b0fe2f4d9bef.zip
u-boot-3e603ec757bee9ce84c7bbc861c7b0fe2f4d9bef.tar.gz
u-boot-3e603ec757bee9ce84c7bbc861c7b0fe2f4d9bef.tar.bz2
efi_loader: struct efi_simple_text_input_protocol
%s/efi_simple_input_interface/efi_simple_text_input_protocol/ We should be consistent in the naming of the EFI protocol interface structures. The protocol is called EFI_SIMPLE_TEXT_INPUT_PROTOCOL. %s/ExtendedVerification/extended_verification/ Use consistent naming of function parameters. Do not use CamelCase. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/serial/serial_efi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/serial_efi.c b/drivers/serial/serial_efi.c
index 399dfd6..1b54d18 100644
--- a/drivers/serial/serial_efi.c
+++ b/drivers/serial/serial_efi.c
@@ -17,7 +17,7 @@
/* Information about the efi console */
struct serial_efi_priv {
- struct efi_simple_input_interface *con_in;
+ struct efi_simple_text_input_protocol *con_in;
struct efi_simple_text_output_protocol *con_out;
struct efi_input_key key;
bool have_key;