Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'soc-fixes-6.1-5' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc

Pull ARM SoC fix from Arnd Bergmann:
"One last build fix came in, addressing a link failure when building
without CONFIG_OUTER_CACHE"

* tag 'soc-fixes-6.1-5' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc:
ARM: at91: fix build for SAMA5D3 w/o L2 cache

+1 -1
+1 -1
arch/arm/mach-at91/sama5.c
··· 26 26 static void __init sama5_secure_cache_init(void) 27 27 { 28 28 sam_secure_init(); 29 - if (sam_linux_is_optee_available()) 29 + if (IS_ENABLED(CONFIG_OUTER_CACHE) && sam_linux_is_optee_available()) 30 30 outer_cache.write_sec = sama5_l2c310_write_sec; 31 31 } 32 32