mirror of https://gitee.com/openkylin/linux.git
drm/via: drop use of drmP.h
Drop use of the deprecated drmP.h header. While touching the files divide include files in blocks and sort the files alphabetically. v2: - Replace all uses of DRM_WAIT_ON() with VIA_WAIT_ON() and thus avoiding to pull in drm_os_linux.h v3: - DRM_WAIT_ON replacement moved to earlier patch (Emil) Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Cc: Kevin Brace <kevinbrace@gmx.com> Cc: Thomas Hellstrom <thellstrom@vmware.com> Cc: "Gustavo A. R. Silva" <gustavo@embeddedor.com> Cc: Mike Marshall <hubcap@omnibond.com> Cc: Ira Weiny <ira.weiny@intel.com> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: Michel Dänzer <michel@daenzer.net> Link: https://patchwork.freedesktop.org/patch/msgid/20190723200944.17285-5-sam@ravnborg.org
This commit is contained in:
parent
2299b52d13
commit
0005cbda43
|
@ -34,8 +34,15 @@
|
|||
* Thomas Hellstrom.
|
||||
*/
|
||||
|
||||
#include <drm/drmP.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/uaccess.h>
|
||||
|
||||
#include <drm/drm.h>
|
||||
#include <drm/drm_agpsupport.h>
|
||||
#include <drm/drm_device.h>
|
||||
#include <drm/drm_file.h>
|
||||
#include <drm/via_drm.h>
|
||||
|
||||
#include "via_drv.h"
|
||||
#include "via_3d_reg.h"
|
||||
|
||||
|
|
|
@ -34,13 +34,16 @@
|
|||
* the same DMA mappings?
|
||||
*/
|
||||
|
||||
#include <drm/drmP.h>
|
||||
#include <drm/via_drm.h>
|
||||
#include "via_drv.h"
|
||||
#include "via_dmablit.h"
|
||||
|
||||
#include <linux/pagemap.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/vmalloc.h>
|
||||
|
||||
#include <drm/drm_device.h>
|
||||
#include <drm/drm_pci.h>
|
||||
#include <drm/via_drm.h>
|
||||
|
||||
#include "via_dmablit.h"
|
||||
#include "via_drv.h"
|
||||
|
||||
#define VIA_PGDN(x) (((unsigned long)(x)) & PAGE_MASK)
|
||||
#define VIA_PGOFF(x) (((unsigned long)(x)) & ~PAGE_MASK)
|
||||
|
|
|
@ -24,11 +24,14 @@
|
|||
|
||||
#include <linux/module.h>
|
||||
|
||||
#include <drm/drmP.h>
|
||||
#include <drm/drm_drv.h>
|
||||
#include <drm/drm_file.h>
|
||||
#include <drm/drm_pci.h>
|
||||
#include <drm/drm_pciids.h>
|
||||
#include <drm/via_drm.h>
|
||||
|
||||
#include "via_drv.h"
|
||||
|
||||
#include <drm/drm_pciids.h>
|
||||
|
||||
static int via_driver_open(struct drm_device *dev, struct drm_file *file)
|
||||
{
|
||||
|
|
|
@ -35,8 +35,10 @@
|
|||
* The refresh rate is also calculated for video playback sync purposes.
|
||||
*/
|
||||
|
||||
#include <drm/drmP.h>
|
||||
#include <drm/drm_device.h>
|
||||
#include <drm/drm_vblank.h>
|
||||
#include <drm/via_drm.h>
|
||||
|
||||
#include "via_drv.h"
|
||||
|
||||
#define VIA_REG_INTERRUPT 0x200
|
||||
|
|
|
@ -21,8 +21,12 @@
|
|||
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
#include <drm/drmP.h>
|
||||
|
||||
#include <drm/drm_device.h>
|
||||
#include <drm/drm_pci.h>
|
||||
#include <drm/drm_vblank.h>
|
||||
#include <drm/via_drm.h>
|
||||
|
||||
#include "via_drv.h"
|
||||
|
||||
static int via_do_init_map(struct drm_device *dev, drm_via_init_t *init)
|
||||
|
|
|
@ -25,8 +25,13 @@
|
|||
* Authors: Thomas Hellström <thomas-at-tungstengraphics-dot-com>
|
||||
*/
|
||||
|
||||
#include <drm/drmP.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
#include <drm/drm_device.h>
|
||||
#include <drm/drm_file.h>
|
||||
#include <drm/drm_irq.h>
|
||||
#include <drm/via_drm.h>
|
||||
|
||||
#include "via_drv.h"
|
||||
|
||||
#define VIA_MM_ALIGN_SHIFT 4
|
||||
|
|
|
@ -28,13 +28,13 @@
|
|||
* be very slow.
|
||||
*/
|
||||
|
||||
#include "via_3d_reg.h"
|
||||
#include <drm/drmP.h>
|
||||
#include <drm/via_drm.h>
|
||||
#include <drm/drm_device.h>
|
||||
#include <drm/drm_legacy.h>
|
||||
#include "via_verifier.h"
|
||||
#include <drm/via_drm.h>
|
||||
|
||||
#include "via_3d_reg.h"
|
||||
#include "via_drv.h"
|
||||
#include <linux/kernel.h>
|
||||
#include "via_verifier.h"
|
||||
|
||||
typedef enum {
|
||||
state_command,
|
||||
|
|
|
@ -25,8 +25,9 @@
|
|||
* Video and XvMC related functions.
|
||||
*/
|
||||
|
||||
#include <drm/drmP.h>
|
||||
#include <drm/drm_device.h>
|
||||
#include <drm/via_drm.h>
|
||||
|
||||
#include "via_drv.h"
|
||||
|
||||
void via_init_futex(drm_via_private_t *dev_priv)
|
||||
|
|
Loading…
Reference in New Issue