mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ARM: MCPM: prefer 'unsigned int' to bare use of 'unsigned'
       [not found] <20230709131439.14552-1-denghuilong@cdjrlc.com>
@ 2023-07-09 13:17 ` xuanzhenggang001
  0 siblings, 0 replies; only message in thread
From: xuanzhenggang001 @ 2023-07-09 13:17 UTC (permalink / raw)
  To: linux; +Cc: linux-arm-kernel, linux-kernel

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@208suo.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];

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-07-09 13:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230709131439.14552-1-denghuilong@cdjrlc.com>
2023-07-09 13:17 ` [PATCH] ARM: MCPM: prefer 'unsigned int' to bare use of 'unsigned' xuanzhenggang001

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®