Skip to content
Commit 2fc49cb0 authored by Len Brown's avatar Len Brown
Browse files

x86: msr-index.h: fix shifts to ULL results in HWP macros.



x = 1
ulong_long = x << 32;

results in:

warning: left shift count >= width of type

x = 8
ulong_long = x << 24;

results in a sign extended ulong_long

Cast x to unsigned long long in these macros
to prevent these errors.

Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 8d84e906
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment