lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Sun, 09 Jul 2023 21:17:23 +0800
From:   xuanzhenggang001@...suo.com
To:     linux@...linux.org.uk
Cc:     linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: [PATCH] ARM: MCPM: prefer 'unsigned int' to bare use of 'unsigned'

Fix the following warnings reported by checkpatch:

arch/arm/common/mcpm_entry.c:143: WARNING: Prefer 'unsigned int' to bare 
use of 'unsigned'
arch/arm/common/mcpm_entry.c:143: WARNING: Prefer 'unsigned int' to bare 
use of 'unsigned'
arch/arm/common/mcpm_entry.c:152: WARNING: Prefer 'unsigned int' to bare 
use of 'unsigned'
arch/arm/common/mcpm_entry.c:152: WARNING: Prefer 'unsigned int' to bare 
use of 'unsigned'

Signed-off-by: Zhenggang Xuan <xuanzhenggang001@...suo.com>
---
  arch/arm/common/mcpm_entry.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/common/mcpm_entry.c b/arch/arm/common/mcpm_entry.c
index 8a9aeeb504dd..97f8e7947807 100644
--- a/arch/arm/common/mcpm_entry.c
+++ b/arch/arm/common/mcpm_entry.c
@@ -140,7 +140,7 @@ static int __mcpm_cluster_state(unsigned int 
cluster)

  extern unsigned long 
mcpm_entry_vectors[MAX_NR_CLUSTERS][MAX_CPUS_PER_CLUSTER];

-void mcpm_set_entry_vector(unsigned cpu, unsigned cluster, void *ptr)
+void mcpm_set_entry_vector(unsigned int cpu, unsigned int cluster, void 
*ptr)
  {
      unsigned long val = ptr ? __pa_symbol(ptr) : 0;
      mcpm_entry_vectors[cluster][cpu] = val;
@@ -149,7 +149,7 @@ void mcpm_set_entry_vector(unsigned cpu, unsigned 
cluster, void *ptr)

  extern unsigned long 
mcpm_entry_early_pokes[MAX_NR_CLUSTERS][MAX_CPUS_PER_CLUSTER][2];

-void mcpm_set_early_poke(unsigned cpu, unsigned cluster,
+void mcpm_set_early_poke(unsigned int cpu, unsigned int cluster,
               unsigned long poke_phys_addr, unsigned long poke_val)
  {
      unsigned long *poke = &mcpm_entry_early_pokes[cluster][cpu][0];

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ