[prev in list] [next in list] [prev in thread] [next in thread] 

List:       fwts-devel
Subject:    Re: [PATCH] fwts_uefi:uefirtvariable:use sizeof() for defining long integer for fixing build failure
From:       Keng-Yu Lin <kengyu () canonical ! com>
Date:       2012-12-21 7:42:52
Message-ID: CADXHx7ZeZ31e+tLouD8aPhZs8UoTXzTVfRVVtu+kB1yL26J0NA () mail ! gmail ! com
[Download RAW message or body]

On Fri, Dec 21, 2012 at 3:32 PM, Ivan Hu <ivan.hu@canonical.com> wrote:
> Since the define EFI_NOT_FOUND is move from uefirtvariable.c to fwts_uefi.h
> the use sizeof() to find the bit size of the long integer rather than a
> fixed value, which avoid build failure should apply on fwts_uefi.h.
>
> Signed-off-by: Ivan Hu <ivan.hu@canonical.com>
> ---
>  src/lib/include/fwts_uefi.h |    4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/src/lib/include/fwts_uefi.h b/src/lib/include/fwts_uefi.h
> index 72d3c10..2771c55 100644
> --- a/src/lib/include/fwts_uefi.h
> +++ b/src/lib/include/fwts_uefi.h
> @@ -46,7 +46,9 @@ enum {
>         FWTS_UEFI_TIME_IN_DAYLIGHT =            0x02
>  };
>
> -#define HIGH_BIT_SET   (1UL << 63)
> +#define BITS_PER_LONG  (sizeof(long) * 8)
> +
> +#define HIGH_BIT_SET   (1UL << (BITS_PER_LONG-1))
>
>  #define EFI_SUCCESS                    0
>  #define EFI_LOAD_ERROR                 (1 | HIGH_BIT_SET)
> --
> 1.7.10.4
>
Acked-by: Keng-Yu Lin <kengyu@canonical.com>


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic