[PATCH v1 1/4] kexec: i386: Fix 32-bit right shifts on 32-bit architectures
Simon Horman
horms at kernel.org
Mon Oct 14 09:24:50 PDT 2024
On Mon, Oct 14, 2024 at 06:31:26PM +0300, Andy Shevchenko wrote:
> 32-bit compilation makes compiler unhappy about too big right shifts.
> Use a similar trick to Linux kernel project by replacing foo >> 32 by
> (foo >> 16) >> 16.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko at linux.intel.com>
Thanks Andy,
Series applied.
More information about the kexec
mailing list