diff options
author | Thomas Zimmermann <tzimmermann@suse.de> | 2021-12-06 12:11:25 +0300 |
---|---|---|
committer | Thomas Zimmermann <tzimmermann@suse.de> | 2021-12-16 14:29:22 +0300 |
commit | d0a0b6cd8cf9f39d99d7d5c4c080499d17f43c33 (patch) | |
tree | e09f7a47de886e96122ad2cbd75d87e569ed2d85 /drivers/gpu/drm/ast/Makefile | |
parent | a2cce09c349e2d9847ee7145986ca27d99bf0f61 (diff) | |
download | linux-d0a0b6cd8cf9f39d99d7d5c4c080499d17f43c33.tar.xz |
drm/ast: Move I2C code into separate source file
Move I2C code into its own source file. Makes the mode-setting
code a little less convoluted.
v3:
* fix SPDX tag to say 'SPDX-License-Identifier'
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Acked-by: Maxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20211206091125.29501-4-tzimmermann@suse.de
Diffstat (limited to 'drivers/gpu/drm/ast/Makefile')
-rw-r--r-- | drivers/gpu/drm/ast/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ast/Makefile b/drivers/gpu/drm/ast/Makefile index 438a2d05b115..21f71160bc3e 100644 --- a/drivers/gpu/drm/ast/Makefile +++ b/drivers/gpu/drm/ast/Makefile @@ -3,6 +3,6 @@ # Makefile for the drm device driver. This driver provides support for the # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. -ast-y := ast_drv.o ast_main.o ast_mm.o ast_mode.o ast_post.o ast_dp501.o +ast-y := ast_drv.o ast_i2c.o ast_main.o ast_mm.o ast_mode.o ast_post.o ast_dp501.o obj-$(CONFIG_DRM_AST) := ast.o |