From: Markos Chandras Date: Thu, 9 Jul 2015 09:40:46 +0000 (+0100) Subject: MIPS: CPC: Fix type for GCR CPC base reg for 64-bit X-Git-Tag: Ubuntu-5.10.0-12.13~14163^2~134 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=391057d915f42d4942f0c65e7d55cec6662c8a54;p=mirror_ubuntu-hirsute-kernel.git MIPS: CPC: Fix type for GCR CPC base reg for 64-bit The GCR CPC base register is 64-bit on 64-bit processors so use the appropriate field. Signed-off-by: Markos Chandras Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/10645/ Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/kernel/mips-cpc.c b/arch/mips/kernel/mips-cpc.c index 11964501c4b0..e05aca41e087 100644 --- a/arch/mips/kernel/mips-cpc.c +++ b/arch/mips/kernel/mips-cpc.c @@ -23,7 +23,7 @@ static DEFINE_PER_CPU_ALIGNED(unsigned long, cpc_core_lock_flags); phys_addr_t __weak mips_cpc_phys_base(void) { - u32 cpc_base; + unsigned long cpc_base; if (!mips_cm_present()) return 0;