mirror of
https://github.com/torvalds/linux.git
synced 2026-04-23 17:15:46 -04:00
As previously fixed for dml in commit4769278e5c("amdgpu/dc/dml: Support clang option for stack alignment") and calcs in commitcc32ad8f55("amdgpu/dc/calcs: Support clang option for stack alignment"), dcn20 uses an option that is not available with clang: clang: error: unknown argument: '-mpreferred-stack-boundary=4' scripts/Makefile.build:281: recipe for target 'drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_resource.o' failed Use the same trick that we have in the other two files. Fixes:7ed4e6352c("drm/amd/display: Add DCN2 HW Sequencer and Resource") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
24 lines
718 B
Makefile
24 lines
718 B
Makefile
#
|
|
# Makefile for DCN.
|
|
|
|
DCN20 = dcn20_resource.o dcn20_hwseq.o dcn20_dpp.o dcn20_dpp_cm.o dcn20_hubp.o \
|
|
dcn20_mpc.o dcn20_opp.o dcn20_hubbub.o dcn20_optc.o dcn20_mmhubbub.o \
|
|
dcn20_stream_encoder.o dcn20_link_encoder.o dcn20_dccg.o \
|
|
dcn20_vmid.o dcn20_dwb.o dcn20_dwb_scl.o
|
|
|
|
ifdef CONFIG_DRM_AMD_DC_DSC_SUPPORT
|
|
DCN20 += dcn20_dsc.o
|
|
endif
|
|
|
|
ifneq ($(call cc-option, -mpreferred-stack-boundary=4),)
|
|
cc_stack_align := -mpreferred-stack-boundary=4
|
|
else ifneq ($(call cc-option, -mstack-alignment=16),)
|
|
cc_stack_align := -mstack-alignment=16
|
|
endif
|
|
|
|
CFLAGS_dcn20_resource.o := -mhard-float -msse $(cc_stack_align)
|
|
|
|
AMD_DAL_DCN20 = $(addprefix $(AMDDALPATH)/dc/dcn20/,$(DCN20))
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DAL_DCN20)
|