Patch "ARM: at91: fix build for SAMA5D3 w/o L2 cache" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    ARM: at91: fix build for SAMA5D3 w/o L2 cache

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     arm-at91-fix-build-for-sama5d3-w-o-l2-cache.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 95717f5f9b406a279681218812582c2ace59eec8
Author: Peter Rosin <peda@xxxxxxxxxx>
Date:   Sat Nov 12 16:40:59 2022 +0100

    ARM: at91: fix build for SAMA5D3 w/o L2 cache
    
    [ Upstream commit 6a3fc8c330d1c1fa3d8773d7d38a7c55c4900dfe ]
    
    The L2 cache is present on the newer SAMA5D2 and SAMA5D4 families, but
    apparently not for the older SAMA5D3.
    
    Solves a build-time regression with the following symptom:
    
    sama5.c:(.init.text+0x48): undefined reference to `outer_cache'
    
    Fixes: 3b5a7ca7d252 ("ARM: at91: setup outer cache .write_sec() callback if needed")
    Signed-off-by: Peter Rosin <peda@xxxxxxxxxx>
    [claudiu.beznea: delete "At least not always." from commit description]
    Signed-off-by: Claudiu Beznea <claudiu.beznea@xxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/b7f8dacc-5e1f-0eb2-188e-3ad9a9f7613d@xxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/arm/mach-at91/sama5.c b/arch/arm/mach-at91/sama5.c
index 67ed68fbe3a5..bf2b5c6a18c6 100644
--- a/arch/arm/mach-at91/sama5.c
+++ b/arch/arm/mach-at91/sama5.c
@@ -26,7 +26,7 @@ static void sama5_l2c310_write_sec(unsigned long val, unsigned reg)
 static void __init sama5_secure_cache_init(void)
 {
 	sam_secure_init();
-	if (sam_linux_is_optee_available())
+	if (IS_ENABLED(CONFIG_OUTER_CACHE) && sam_linux_is_optee_available())
 		outer_cache.write_sec = sama5_l2c310_write_sec;
 }
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux