The various models have common code for the VGA output's encoder and connector. Move everything into a single shared source file. Remove some obsolete initializer macros. No functional changes. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240610141141.29527-2-tzimmermann@suse.de
18 lines
339 B
Makefile
18 lines
339 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
mgag200-y := \
|
|
mgag200_bmc.o \
|
|
mgag200_ddc.o \
|
|
mgag200_drv.o \
|
|
mgag200_g200.o \
|
|
mgag200_g200eh.o \
|
|
mgag200_g200eh3.o \
|
|
mgag200_g200er.o \
|
|
mgag200_g200ev.o \
|
|
mgag200_g200ew3.o \
|
|
mgag200_g200se.o \
|
|
mgag200_g200wb.o \
|
|
mgag200_mode.o \
|
|
mgag200_vga.o
|
|
|
|
obj-$(CONFIG_DRM_MGAG200) += mgag200.o
|