aboutsummaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/via/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2023-01-13drm: Remove the obsolete driver-viaCai Huoqing1-8/+0
Commit 399516ab0fee ("MAINTAINERS: Add a bunch of legacy (UMS) DRM drivers") marked via driver obsolete 7 years ago. And the mesa UMD of this drm driver already in deprecated list in the link: https://docs.mesa3d.org/systems.html VIA Unichrome->drivers/gpu/drm/via It's time to remove this driver. Signed-off-by: Cai Huoqing <[email protected]> Acked-by: Daniel Vetter <[email protected]> Acked-by: Dave Airlie <[email protected]> Acked-by: Thomas Zimmermann <[email protected]> Signed-off-by: Thomas Zimmermann <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2022-07-16drm/via: Embed via_verifier in via_dri1Sam Ravnborg1-1/+1
Embed the header file in via_drv.h and the code in via_dri1. All functions are made static as there are no more external users. Signed-off-by: Sam Ravnborg <[email protected]> Acked-by: Thomas Zimmermann <[email protected]> Cc: Kevin Brace <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2022-07-16drm/via: Embed via_dmablit in via_dri1Sam Ravnborg1-1/+1
Embed some of the header file in via_drv.h and the rest in via_dri1.c While embedding deleted extra empty lines and functions that has no external users are made static. Signed-off-by: Sam Ravnborg <[email protected]> Acked-by: Thomas Zimmermann <[email protected]> Cc: Kevin Brace <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2022-07-16drm/via: Embed via_irq in via_dri1Sam Ravnborg1-1/+1
All functions are made static as there are no more external users. The file had new copyrights that are kept. Signed-off-by: Sam Ravnborg <[email protected]> Acked-by: Thomas Zimmermann <[email protected]> Cc: Kevin Brace <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2022-07-16drm/via: Embed via_video in via_dri1Sam Ravnborg1-1/+1
All functions are made static as there are no more external users. The file had a new copyright that is kept. Signed-off-by: Sam Ravnborg <[email protected]> Acked-by: Thomas Zimmermann <[email protected]> Cc: Kevin Brace <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2022-07-16drm/via: Embed via_mm in via_dri1Sam Ravnborg1-1/+1
All functions was made static as there are no external users. Signed-off-by: Sam Ravnborg <[email protected]> Acked-by: Thomas Zimmermann <[email protected]> Cc: Kevin Brace <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2022-07-16drm/via: Embed via_map in via_dri1Sam Ravnborg1-1/+1
A few functions has no external use and are made static. Signed-off-by: Sam Ravnborg <[email protected]> Acked-by: Thomas Zimmermann <[email protected]> Cc: Kevin Brace <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2022-07-16drm/via: Embed via_dma in via_dri1Sam Ravnborg1-1/+1
Moved the copyright notices so all copyrights are kept. A few variables was made static as there are no more users outside this file. Signed-off-by: Sam Ravnborg <[email protected]> Acked-by: Thomas Zimmermann <[email protected]> Cc: Kevin Brace <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2022-07-16drm/via: Rename via_drv to via_dri1Sam Ravnborg1-1/+1
The via driver implements the DRI1 interface, and we have a new implementation of the via driver coming that supports atomic modesetting. It is not acceptable just to replace the existing driver so this is first step to make it a single-file implementation allowing it to stay without interfering with the new driver. Signed-off-by: Sam Ravnborg <[email protected]> Acked-by: Thomas Zimmermann <[email protected]> Cc: Kevin Brace <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2019-05-21treewide: Add SPDX license identifier - Makefile/KconfigThomas Gleixner1-0/+1
Add SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any form These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2017-05-18drm/via: remove unneeded -Iinclude/drm compiler flagMasahiro Yamada1-1/+0
With the include directives under include/drm/ fixed, this flag is no longer needed. Signed-off-by: Masahiro Yamada <[email protected]> Signed-off-by: Daniel Vetter <[email protected]> Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
2008-07-14drm: reorganise drm tree to be more future proof.Dave Airlie1-0/+8
With the coming of kernel based modesetting and the memory manager stuff, the everything in one directory approach was getting very ugly and starting to be unmanageable. This restructures the drm along the lines of other kernel components. It creates a drivers/gpu/drm directory and moves the hw drivers into subdirectores. It moves the includes into an include/drm, and sets up the unifdef for the userspace headers we should be exporting. Signed-off-by: Dave Airlie <[email protected]>