mirror of
https://github.com/torvalds/linux.git
synced 2026-04-25 01:52:32 -04:00
This code isn't used, and this function is huge, reimport later if going to be used. Signed-off-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
21 lines
917 B
Makefile
21 lines
917 B
Makefile
#
|
|
# Makefile for the 'utils' sub-component of DAL.
|
|
# It provides the general basic services required by other DAL
|
|
# subcomponents.
|
|
|
|
CFLAGS_display_mode_lib.o := -mhard-float -msse -mpreferred-stack-boundary=4
|
|
CFLAGS_display_pipe_clocks.o := -mhard-float -msse -mpreferred-stack-boundary=4
|
|
CFLAGS_display_rq_dlg_calc.o := -mhard-float -msse -mpreferred-stack-boundary=4
|
|
CFLAGS_display_rq_dlg_helpers.o := -mhard-float -msse -mpreferred-stack-boundary=4
|
|
CFLAGS_display_watermark.o := -mhard-float -msse -mpreferred-stack-boundary=4
|
|
CFLAGS_soc_bounding_box.o := -mhard-float -msse -mpreferred-stack-boundary=4
|
|
CFLAGS_dml_common_defs.o := -mhard-float -msse -mpreferred-stack-boundary=4
|
|
|
|
DML = display_mode_lib.o display_rq_dlg_calc.o \
|
|
display_rq_dlg_helpers.o display_watermark.o \
|
|
soc_bounding_box.o dml_common_defs.o
|
|
|
|
AMD_DAL_DML = $(addprefix $(AMDDALPATH)/dc/dml/,$(DML))
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DAL_DML)
|