diff options
author | Thomas Huth <thuth@redhat.com> | 2015-05-22 10:25:02 +0300 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2015-08-22 12:16:16 +0300 |
commit | 5358a96341a7fba23cbf0eaf01ce1ab4d738fc90 (patch) | |
tree | 49fc8843426bbf80fee0c6c98d17c204a3df63fb /arch/powerpc/include/asm/ppc-opcode.h | |
parent | 129fd4233b62159d50c35fb6489cb22ee9c27415 (diff) | |
download | linux-5358a96341a7fba23cbf0eaf01ce1ab4d738fc90.tar.xz |
KVM: PPC: Fix warnings from sparse
When compiling the KVM code for POWER with "make C=1", sparse
complains about functions missing proper prototypes and a 64-bit
constant missing the ULL prefix. Let's fix this by making the
functions static or by including the proper header with the
prototypes, and by appending a ULL prefix to the constant
PPC_MPPE_ADDRESS_MASK.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/include/asm/ppc-opcode.h')
-rw-r--r-- | arch/powerpc/include/asm/ppc-opcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/ppc-opcode.h b/arch/powerpc/include/asm/ppc-opcode.h index 8452335661a5..790f5d1d9a46 100644 --- a/arch/powerpc/include/asm/ppc-opcode.h +++ b/arch/powerpc/include/asm/ppc-opcode.h @@ -287,7 +287,7 @@ /* POWER8 Micro Partition Prefetch (MPP) parameters */ /* Address mask is common for LOGMPP instruction and MPPR SPR */ -#define PPC_MPPE_ADDRESS_MASK 0xffffffffc000 +#define PPC_MPPE_ADDRESS_MASK 0xffffffffc000ULL /* Bits 60 and 61 of MPP SPR should be set to one of the following */ /* Aborting the fetch is indeed setting 00 in the table size bits */ |