public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: AKASHI Takahiro <takahiro.akashi@linaro.org>
To: u-boot@lists.denx.de
Subject: [PATCH 1/1] efi_loader: definition of GetNextVariableName()
Date: Mon, 30 Mar 2020 15:58:05 +0900	[thread overview]
Message-ID: <20200330065804.GC11504@linaro.org> (raw)
In-Reply-To: <20200322173534.170524-1-xypron.glpk@gmx.de>

On Sun, Mar 22, 2020 at 06:35:34PM +0100, Heinrich Schuchardt wrote:
> 'vendor' is both an input and an output parameter. So it cannot be
> constant.

The same fix must be applied to parse_uboot_variable().

-Takahiro Akashi

> Fixes: 0bda81bfdc5c ("efi_loader: use const efi_guid_t * for variable services")
> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> ---
>  include/efi_api.h             | 2 +-
>  include/efi_loader.h          | 2 +-
>  lib/efi_loader/efi_variable.c | 4 ++--
>  3 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/include/efi_api.h b/include/efi_api.h
> index 4713da2e1d..1c40ffc4f5 100644
> --- a/include/efi_api.h
> +++ b/include/efi_api.h
> @@ -272,7 +272,7 @@ struct efi_runtime_services {
>  					    efi_uintn_t *data_size, void *data);
>  	efi_status_t (EFIAPI *get_next_variable_name)(
>  			efi_uintn_t *variable_name_size,
> -			u16 *variable_name, const efi_guid_t *vendor);
> +			u16 *variable_name, efi_guid_t *vendor);
>  	efi_status_t (EFIAPI *set_variable)(u16 *variable_name,
>  					    const efi_guid_t *vendor,
>  					    u32 attributes,
> diff --git a/include/efi_loader.h b/include/efi_loader.h
> index 37c3f15da1..3f2792892f 100644
> --- a/include/efi_loader.h
> +++ b/include/efi_loader.h
> @@ -645,7 +645,7 @@ efi_status_t EFIAPI efi_get_variable(u16 *variable_name,
>  				     efi_uintn_t *data_size, void *data);
>  efi_status_t EFIAPI efi_get_next_variable_name(efi_uintn_t *variable_name_size,
>  					       u16 *variable_name,
> -					       const efi_guid_t *vendor);
> +					       efi_guid_t *vendor);
>  efi_status_t EFIAPI efi_set_variable(u16 *variable_name,
>  				     const efi_guid_t *vendor, u32 attributes,
>  				     efi_uintn_t data_size, const void *data);
> diff --git a/lib/efi_loader/efi_variable.c b/lib/efi_loader/efi_variable.c
> index 3bec2d0d17..fe2f264591 100644
> --- a/lib/efi_loader/efi_variable.c
> +++ b/lib/efi_loader/efi_variable.c
> @@ -330,7 +330,7 @@ static efi_status_t parse_uboot_variable(char *variable,
>   */
>  efi_status_t EFIAPI efi_get_next_variable_name(efi_uintn_t *variable_name_size,
>  					       u16 *variable_name,
> -					       const efi_guid_t *vendor)
> +					       efi_guid_t *vendor)
>  {
>  	char *native_name, *variable;
>  	ssize_t name_len, list_len;
> @@ -598,7 +598,7 @@ efi_get_variable_runtime(u16 *variable_name, const efi_guid_t *vendor,
>   */
>  static efi_status_t __efi_runtime EFIAPI
>  efi_get_next_variable_name_runtime(efi_uintn_t *variable_name_size,
> -				   u16 *variable_name, const efi_guid_t *vendor)
> +				   u16 *variable_name, efi_guid_t *vendor)
>  {
>  	return EFI_UNSUPPORTED;
>  }
> --
> 2.25.1
> 

      reply	other threads:[~2020-03-30  6:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-22 17:35 [PATCH 1/1] efi_loader: definition of GetNextVariableName() Heinrich Schuchardt
2020-03-30  6:58 ` AKASHI Takahiro [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200330065804.GC11504@linaro.org \
    --to=takahiro.akashi@linaro.org \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox