Skip to content

Commit f57deb0

Browse files
masahir0yRussell King
authored andcommitted
ARM: 8543/1: decompressor: rename suffix_y to compress-y
The "$(suffix_y)" no longer appears in the file names, but it just specifies the method of the file compression. The "compress-y" sounds more suitable. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
1 parent 53f6754 commit f57deb0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

arch/arm/boot/compressed/Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ endif
6666

6767
CPPFLAGS_vmlinux.lds := -DTEXT_START="$(ZTEXTADDR)" -DBSS_START="$(ZBSSADDR)"
6868

69-
suffix_$(CONFIG_KERNEL_GZIP) = gzip
70-
suffix_$(CONFIG_KERNEL_LZO) = lzo
71-
suffix_$(CONFIG_KERNEL_LZMA) = lzma
72-
suffix_$(CONFIG_KERNEL_XZ) = xzkern
73-
suffix_$(CONFIG_KERNEL_LZ4) = lz4
69+
compress-$(CONFIG_KERNEL_GZIP) = gzip
70+
compress-$(CONFIG_KERNEL_LZO) = lzo
71+
compress-$(CONFIG_KERNEL_LZMA) = lzma
72+
compress-$(CONFIG_KERNEL_XZ) = xzkern
73+
compress-$(CONFIG_KERNEL_LZ4) = lz4
7474

7575
# Borrowed libfdt files for the ATAG compatibility mode
7676

@@ -174,7 +174,7 @@ $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.o \
174174
@$(check_for_bad_syms)
175175

176176
$(obj)/piggy_data: $(obj)/../Image FORCE
177-
$(call if_changed,$(suffix_y))
177+
$(call if_changed,$(compress-y))
178178

179179
$(obj)/piggy.o: $(obj)/piggy_data
180180

0 commit comments

Comments
 (0)