diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-07-25 01:16:10 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-07-27 21:34:06 -0400 |
commit | 6b0709f5a50a98df5919ade32fd131dde10bdcb0 (patch) | |
tree | d5380039e2257e8497de10ecaeae69d85959d377 | |
parent | bb81955fd4a49fffdd86d50afd0c1f2eea044c05 (diff) |
ARM: at91: remove unused duplicated filechk_offsets
The filechk_offsets in arch/arm/mach-at91/Makefile is never
used because it is always overridden by the equivalent one in
scripts/Makefile.lib
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
-rw-r--r-- | arch/arm/mach-at91/Makefile | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/arch/arm/mach-at91/Makefile b/arch/arm/mach-at91/Makefile index 4ea93c9df77b..7415f181907b 100644 --- a/arch/arm/mach-at91/Makefile +++ b/arch/arm/mach-at91/Makefile | |||
@@ -19,31 +19,6 @@ ifeq ($(CONFIG_PM_DEBUG),y) | |||
19 | CFLAGS_pm.o += -DDEBUG | 19 | CFLAGS_pm.o += -DDEBUG |
20 | endif | 20 | endif |
21 | 21 | ||
22 | # Default sed regexp - multiline due to syntax constraints | ||
23 | define sed-y | ||
24 | "/^->/{s:->#\(.*\):/* \1 */:; \ | ||
25 | s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \ | ||
26 | s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \ | ||
27 | s:->::; p;}" | ||
28 | endef | ||
29 | |||
30 | # Use filechk to avoid rebuilds when a header changes, but the resulting file | ||
31 | # does not | ||
32 | define filechk_offsets | ||
33 | (set -e; \ | ||
34 | echo "#ifndef $2"; \ | ||
35 | echo "#define $2"; \ | ||
36 | echo "/*"; \ | ||
37 | echo " * DO NOT MODIFY."; \ | ||
38 | echo " *"; \ | ||
39 | echo " * This file was generated by Kbuild"; \ | ||
40 | echo " */"; \ | ||
41 | echo ""; \ | ||
42 | sed -ne $(sed-y); \ | ||
43 | echo ""; \ | ||
44 | echo "#endif" ) | ||
45 | endef | ||
46 | |||
47 | arch/arm/mach-at91/pm_data-offsets.s: arch/arm/mach-at91/pm_data-offsets.c | 22 | arch/arm/mach-at91/pm_data-offsets.s: arch/arm/mach-at91/pm_data-offsets.c |
48 | $(call if_changed_dep,cc_s_c) | 23 | $(call if_changed_dep,cc_s_c) |
49 | 24 | ||