summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2022-12-05 14:30:33 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-12-07 07:56:30 +0100
commitd3b8a88d34cc608084e31715ca2cab54c65cb39a (patch)
treed6833ec69dda7fe3b43d72c2fcdbd600f156c4f6 /common
parent3fec5568dbaabf12210d93406b5b6680a829245d (diff)
downloadbarebox-d3b8a88d34cc608084e31715ca2cab54c65cb39a.tar.gz
barebox-d3b8a88d34cc608084e31715ca2cab54c65cb39a.tar.xz
treewide: rename CONFIG_HAS_ARCH_SJLJ to CONFIG_ARCH_HAS_SJLJ
We have 9 symbols beginning with ARCH_HAS, but only with HAS_ARCH. Change it over for symmetry. No functional change. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20221205133033.3008535-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/Kconfig b/common/Kconfig
index fb2bf49683..19cd793110 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -27,7 +27,7 @@ config HAS_DMA
Drivers that depend on a DMA implementation can depend on this
config, so that you don't get a compilation error.
-config HAS_ARCH_SJLJ
+config ARCH_HAS_SJLJ
bool
help
Architecture has support implemented for setjmp()/longjmp()/initjmp()
@@ -1004,7 +1004,7 @@ config POLLER
config BTHREAD
bool "barebox co-operative (green) thread infrastructure"
select HAS_SCHED
- depends on HAS_ARCH_SJLJ
+ depends on ARCH_HAS_SJLJ
help
barebox threads are lightweight cooperative (green) threads that are
scheduled within delay loops and the console idle to asynchronously