diff options
author | Thomas Zimmermann <tzimmermann@suse.de> | 2021-07-02 10:54:32 +0300 |
---|---|---|
committer | Thomas Zimmermann <tzimmermann@suse.de> | 2021-07-05 09:54:44 +0300 |
commit | 796c3e35ac16776ff479c2a7d9e3036bf5ffd73f (patch) | |
tree | e2878e13a8590bad5fd7894d189df679f356812a /drivers/gpu/drm/tiny/Makefile | |
parent | 3f5aa5ac0b0f9704f0c60f5fbbbcdc8c043d6eb6 (diff) | |
download | linux-796c3e35ac16776ff479c2a7d9e3036bf5ffd73f.tar.xz |
drm/bochs: Move to tiny/
The bochs driver is only ~600 lines of code. Putting it into tiny/
cleans up the DRM directory slightly. Some style problems were fixed
and unneeded include statements were removed. No functional changes.
v2:
* make bochs_mode_funcs static (Daniel, kernel test robot)
* rebase onto aperture API changes
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210702075434.27677-2-tzimmermann@suse.de
Diffstat (limited to 'drivers/gpu/drm/tiny/Makefile')
-rw-r--r-- | drivers/gpu/drm/tiny/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/tiny/Makefile b/drivers/gpu/drm/tiny/Makefile index 9cc847e756da..e09942895c77 100644 --- a/drivers/gpu/drm/tiny/Makefile +++ b/drivers/gpu/drm/tiny/Makefile @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only obj-$(CONFIG_DRM_ARCPGU) += arcpgu.o +obj-$(CONFIG_DRM_BOCHS) += bochs.o obj-$(CONFIG_DRM_CIRRUS_QEMU) += cirrus.o obj-$(CONFIG_DRM_GM12U320) += gm12u320.o obj-$(CONFIG_DRM_SIMPLEDRM) += simpledrm.o |