scripts/tags.sh: remove find_sources
authorWei Yang <richard.weiyang@gmail.com>
Fri, 29 Dec 2023 03:06:54 +0000 (03:06 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 4 Jan 2024 16:01:15 +0000 (17:01 +0100)
After commit '4f628248a578 kbuild: reintroduce ALLSOURCE_ARCHS support for
tags/cscope', find_sources only invoke find_arch_sources.

Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
CC: Jike Song <albcamus@gmail.com>
Link: https://lore.kernel.org/r/20231229030654.17474-4-richard.weiyang@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
scripts/tags.sh

index f73cf3f39638c9145f1c7417ccb69f347f7fe1c3..191e0461d6d5bd7e0c6be5bce059f106e2da3af6 100755 (executable)
@@ -81,11 +81,6 @@ find_other_sources()
               -name "$1" -not -type l -print;
 }
 
-find_sources()
-{
-       find_arch_sources $1 "$2"
-}
-
 all_sources()
 {
        find_arch_include_sources ${SRCARCH} '*.[chS]'
@@ -95,7 +90,7 @@ all_sources()
        find_include_sources '*.[chS]'
        for arch in $ALLSOURCE_ARCHS
        do
-               find_sources $arch '*.[chS]'
+               find_arch_sources $arch '*.[chS]'
        done
        find_other_sources '*.[chS]'
 }
@@ -125,7 +120,7 @@ all_kconfigs()
        find ${tree}arch/ -maxdepth 1 $ignore \
               -name "Kconfig*" -not -type l -print;
        for arch in $ALLSOURCE_ARCHS; do
-               find_sources $arch 'Kconfig*'
+               find_arch_sources $arch 'Kconfig*'
        done
        find_other_sources 'Kconfig*'
 }