Skip to content

Commit 11696c5

Browse files
bijudasLaurent Pinchart
authored andcommitted
drm: Place Renesas drivers in a separate dir
Create vendor specific renesas directory and move renesas drivers to that directory. Signed-off-by: Biju Das <[email protected]> Acked-by: Kieran Bingham <[email protected]> Reviewed-by: Laurent Pinchart <[email protected]> Signed-off-by: Laurent Pinchart <[email protected]>
1 parent 2da4b72 commit 11696c5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+11
-7
lines changed

MAINTAINERS

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6981,8 +6981,7 @@ F: Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
69816981
F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
69826982
F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
69836983
F: Documentation/devicetree/bindings/display/renesas,du.yaml
6984-
F: drivers/gpu/drm/rcar-du/
6985-
F: drivers/gpu/drm/shmobile/
6984+
F: drivers/gpu/drm/renesas/
69866985
F: include/linux/platform_data/shmob_drm.h
69876986

69886987
DRM DRIVERS FOR ROCKCHIP

drivers/gpu/drm/Kconfig

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,9 +295,7 @@ source "drivers/gpu/drm/armada/Kconfig"
295295

296296
source "drivers/gpu/drm/atmel-hlcdc/Kconfig"
297297

298-
source "drivers/gpu/drm/rcar-du/Kconfig"
299-
300-
source "drivers/gpu/drm/shmobile/Kconfig"
298+
source "drivers/gpu/drm/renesas/Kconfig"
301299

302300
source "drivers/gpu/drm/sun4i/Kconfig"
303301

drivers/gpu/drm/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,7 @@ obj-$(CONFIG_DRM_UDL) += udl/
156156
obj-$(CONFIG_DRM_AST) += ast/
157157
obj-$(CONFIG_DRM_ARMADA) += armada/
158158
obj-$(CONFIG_DRM_ATMEL_HLCDC) += atmel-hlcdc/
159-
obj-y += rcar-du/
160-
obj-$(CONFIG_DRM_SHMOBILE) +=shmobile/
159+
obj-y += renesas/
161160
obj-y += omapdrm/
162161
obj-$(CONFIG_DRM_SUN4I) += sun4i/
163162
obj-y += tilcdc/

drivers/gpu/drm/renesas/Kconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# SPDX-License-Identifier: GPL-2.0-only
2+
3+
source "drivers/gpu/drm/renesas/rcar-du/Kconfig"
4+
source "drivers/gpu/drm/renesas/shmobile/Kconfig"

drivers/gpu/drm/renesas/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# SPDX-License-Identifier: GPL-2.0
2+
3+
obj-y += rcar-du/
4+
obj-$(CONFIG_DRM_SHMOBILE) += shmobile/

0 commit comments

Comments
 (0)