mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] efi: x86: prefer 'unsigned int' to bare use of 'unsigned'
       [not found] <tencent_513E2ED35A17B9569C91CF75664724C7620A@qq.com>
@ 2023-07-09  2:20 ` xuanzhenggang001
  2023-07-09 18:14   ` Andy Shevchenko
  0 siblings, 1 reply; 2+ messages in thread
From: xuanzhenggang001 @ 2023-07-09  2:20 UTC (permalink / raw)
  To: ardb, mingo, bp, dave.hansen
  Cc: platform-driver-x86, linux-kernel, dvhart, andy

This patch fixes the following checkpatch warning:
arch/x86/platform/efi/efi_64.c:109: WARNING: Prefer 'unsigned int' to 
bare use of 'unsigned'
arch/x86/platform/efi/efi_64.c:177: WARNING: Prefer 'unsigned int' to 
bare use of 'unsigned'
arch/x86/platform/efi/efi_64.c:182: WARNING: Prefer 'unsigned int' to 
bare use of 'unsigned'

Signed-off-by: Zhenggang Xuan <xuanzhenggang001@208suo.com>
---
  arch/x86/platform/efi/efi_64.c | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/x86/platform/efi/efi_64.c 
b/arch/x86/platform/efi/efi_64.c
index 232acf418cfb..0f69bd6eb144 100644
--- a/arch/x86/platform/efi/efi_64.c
+++ b/arch/x86/platform/efi/efi_64.c
@@ -106,7 +106,7 @@ int __init efi_alloc_page_tables(void)
   */
  void efi_sync_low_kernel_mappings(void)
  {
-    unsigned num_entries;
+    unsigned int num_entries;
      pgd_t *pgd_k, *pgd_efi;
      p4d_t *p4d_k, *p4d_efi;
      pud_t *pud_k, *pud_efi;
@@ -174,12 +174,12 @@ virt_to_phys_or_null_size(void *va, unsigned long 
size)
  #define virt_to_phys_or_null(addr)                \
      virt_to_phys_or_null_size((addr), sizeof(*(addr)))

-int __init efi_setup_page_tables(unsigned long pa_memmap, unsigned 
num_pages)
+int __init efi_setup_page_tables(unsigned long pa_memmap, unsigned int 
num_pages)
  {
      extern const u8 __efi64_thunk_ret_tramp[];
      unsigned long pfn, text, pf, rodata, tramp;
      struct page *page;
-    unsigned npages;
+    unsigned int npages;
      pgd_t *pgd = efi_mm.pgd;

      /*

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] efi: x86: prefer 'unsigned int' to bare use of 'unsigned'
  2023-07-09  2:20 ` [PATCH] efi: x86: prefer 'unsigned int' to bare use of 'unsigned' xuanzhenggang001
@ 2023-07-09 18:14   ` Andy Shevchenko
  0 siblings, 0 replies; 2+ messages in thread
From: Andy Shevchenko @ 2023-07-09 18:14 UTC (permalink / raw)
  To: xuanzhenggang001
  Cc: ardb, mingo, bp, dave.hansen, platform-driver-x86, linux-kernel,
	dvhart, andy

On Sun, Jul 9, 2023 at 5:20 AM <xuanzhenggang001@208suo.com> wrote:
>
> This patch fixes the following checkpatch warning:
> arch/x86/platform/efi/efi_64.c:109: WARNING: Prefer 'unsigned int' to
> bare use of 'unsigned'
> arch/x86/platform/efi/efi_64.c:177: WARNING: Prefer 'unsigned int' to
> bare use of 'unsigned'
> arch/x86/platform/efi/efi_64.c:182: WARNING: Prefer 'unsigned int' to
> bare use of 'unsigned'

> -int __init efi_setup_page_tables(unsigned long pa_memmap, unsigned
> num_pages)
> +int __init efi_setup_page_tables(unsigned long pa_memmap, unsigned int
> num_pages)

Nice, but you shouldn't just blindly do some mechanic "fixes". Now
your patch makes differences between the function prototype and its
implementation.

-- 
With Best Regards,
Andy Shevchenko

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-07-09 18:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <tencent_513E2ED35A17B9569C91CF75664724C7620A@qq.com>
2023-07-09  2:20 ` [PATCH] efi: x86: prefer 'unsigned int' to bare use of 'unsigned' xuanzhenggang001
2023-07-09 18:14   ` Andy Shevchenko

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®