scripts: Remove ICC-related dead code
authorRuihan Li <lrh2000@pku.edu.cn>
Mon, 24 Apr 2023 16:21:10 +0000 (00:21 +0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 24 Apr 2023 17:18:32 +0000 (10:18 -0700)
commit1a261a6e10e80cd7c69c3f5bdf47cd41f928fd08
tree9995c8612eef4f7c47bc597d58735a2014acdcb1
parent457391b0380335d5e9a5babdec90ac53928b23b4
scripts: Remove ICC-related dead code

Intel compiler support has already been completely removed in commit
95207db8166a ("Remove Intel compiler support").  However, it appears
that there is still some ICC-related code in scripts/cc-version.sh.
There is no harm in leaving the code as it is, but removing the dead
code makes the codebase a bit cleaner.

Hopefully all ICC-related stuff in the build scripts will be removed
after this commit, given the grep output as below:

(linux/scripts) $ grep -i -w -R 'icc'
cc-version.sh:ICC)
cc-version.sh: min_version=$($min_tool_version icc)
dtc/include-prefixes/arm64/qcom/sm6350.dtsi:#include <dt-bindings/interconnect/qcom,icc.h>

Fixes: 95207db8166a ("Remove Intel compiler support")
Signed-off-by: Ruihan Li <lrh2000@pku.edu.cn>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/cc-version.sh