diff mbox series

arm64: hibernate: Fix warning for cast from restricted gfp_t

Message ID 20240910232507.313555-1-minhuadotchen@gmail.com (mailing list archive)
State New
Headers show
Series arm64: hibernate: Fix warning for cast from restricted gfp_t | expand

Commit Message

Min-Hua Chen Sept. 10, 2024, 11:25 p.m. UTC
This patch fixes the following warning by adding __force
to the cast:
arch/arm64/kernel/hibernate.c:410:44: sparse: warning: cast from restricted gfp_t

No functional change intended.

Signed-off-by: Min-Hua Chen <minhuadotchen@gmail.com>
---
 arch/arm64/kernel/hibernate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Will Deacon Sept. 12, 2024, 12:57 p.m. UTC | #1
On Wed, 11 Sep 2024 07:25:05 +0800, Min-Hua Chen wrote:
> This patch fixes the following warning by adding __force
> to the cast:
> arch/arm64/kernel/hibernate.c:410:44: sparse: warning: cast from restricted gfp_t
> 
> No functional change intended.
> 
> 
> [...]

Applied to arm64 (for-next/misc), thanks!

[1/1] arm64: hibernate: Fix warning for cast from restricted gfp_t
      https://git.kernel.org/arm64/c/ecdd16df4564

Cheers,
diff mbox series

Patch

diff --git a/arch/arm64/kernel/hibernate.c b/arch/arm64/kernel/hibernate.c
index 02870beb271e..7b11d84f533c 100644
--- a/arch/arm64/kernel/hibernate.c
+++ b/arch/arm64/kernel/hibernate.c
@@ -407,7 +407,7 @@  int swsusp_arch_resume(void)
 					  void *, phys_addr_t, phys_addr_t);
 	struct trans_pgd_info trans_info = {
 		.trans_alloc_page	= hibernate_page_alloc,
-		.trans_alloc_arg	= (void *)GFP_ATOMIC,
+		.trans_alloc_arg	= (__force void *)GFP_ATOMIC,
 	};
 
 	/*