b8bbbea1ae
Move the fbdev emulation from framebuffer.c to fbdev.c. Only build the source code if the Kconfig symbol has been selected. Remaining in framebuffer.c is gma500's code for DRM framebuffers. No functional changes. v2: * remove 'extern' from function declaration (Patrik) * declare empty init/fini functions as 'static inline' (kernel test robot) * rebase onto vm_flags_set() * typo fixes in commit message Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Acked-by: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230313151610.14367-3-tzimmermann@suse.de
44 lines
829 B
Makefile
44 lines
829 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# KMS driver for the GMA500
|
|
#
|
|
|
|
gma500_gfx-y += \
|
|
backlight.o \
|
|
cdv_device.o \
|
|
cdv_intel_crt.o \
|
|
cdv_intel_display.o \
|
|
cdv_intel_dp.o \
|
|
cdv_intel_hdmi.o \
|
|
cdv_intel_lvds.o \
|
|
framebuffer.o \
|
|
gem.o \
|
|
gma_device.o \
|
|
gma_display.o \
|
|
gtt.o \
|
|
intel_bios.o \
|
|
intel_gmbus.o \
|
|
intel_i2c.o \
|
|
mid_bios.o \
|
|
mmu.o \
|
|
oaktrail_device.o \
|
|
oaktrail_crtc.o \
|
|
oaktrail_hdmi.o \
|
|
oaktrail_hdmi_i2c.o \
|
|
oaktrail_lvds.o \
|
|
oaktrail_lvds_i2c.o \
|
|
power.o \
|
|
psb_device.o \
|
|
psb_drv.o \
|
|
psb_intel_display.o \
|
|
psb_intel_lvds.o \
|
|
psb_intel_modes.o \
|
|
psb_intel_sdvo.o \
|
|
psb_lid.o \
|
|
psb_irq.o
|
|
|
|
gma500_gfx-$(CONFIG_ACPI) += opregion.o
|
|
gma500_gfx-$(CONFIG_DRM_FBDEV_EMULATION) += fbdev.o
|
|
|
|
obj-$(CONFIG_DRM_GMA500) += gma500_gfx.o
|