diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-03-16 19:59:06 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-04-04 11:05:28 +0200 |
commit | 90b658b4cc9f6b9d50a80fac1fbc62bd6420a483 (patch) | |
tree | 7650b108ecd49895b40e0ca20d827aa627707455 /lib | |
parent | 0f7fcc72565ce411941a12de0fb0ea5538a17cd0 (diff) | |
download | u-boot-90b658b4cc9f6b9d50a80fac1fbc62bd6420a483.zip u-boot-90b658b4cc9f6b9d50a80fac1fbc62bd6420a483.tar.gz u-boot-90b658b4cc9f6b9d50a80fac1fbc62bd6420a483.tar.bz2 |
efi_loader: use __always_inline for pixel conversion
We optimize for size using -Os so gcc might ignore 'inline'.
Pixel conversions are called so often that we always want to inline them.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_gop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/efi_loader/efi_gop.c b/lib/efi_loader/efi_gop.c index ac92109..b0c3d59 100644 --- a/lib/efi_loader/efi_gop.c +++ b/lib/efi_loader/efi_gop.c @@ -56,7 +56,7 @@ static efi_status_t EFIAPI gop_set_mode(struct efi_gop *this, u32 mode_number) return EFI_EXIT(EFI_SUCCESS); } -static inline struct efi_gop_pixel efi_vid16_to_blt_col(u16 vid) +static __always_inline struct efi_gop_pixel efi_vid16_to_blt_col(u16 vid) { struct efi_gop_pixel blt = { .reserved = 0, @@ -70,7 +70,7 @@ static inline struct efi_gop_pixel efi_vid16_to_blt_col(u16 vid) return blt; } -static inline u16 efi_blt_col_to_vid16(struct efi_gop_pixel *blt) +static __always_inline u16 efi_blt_col_to_vid16(struct efi_gop_pixel *blt) { return (u16)(blt->red >> 3) << 11 | (u16)(blt->green >> 2) << 5 | |