Skip to content

Commit

Permalink
drm/vkms: Fix license inconsistent
Browse files Browse the repository at this point in the history
Fixes license inconsistent related to the VKMS driver and remove the
redundant boilerplate comment.

Fixes: 854502f ("drm/vkms: Add basic CRTC initialization")

Cc: stable@vger.kernel.org
Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20190206140116.7qvy2lpwbcd7wds6@smtp.gmail.com
  • Loading branch information
Rodrigo Siqueira committed Feb 10, 2019
1 parent 6297388 commit 7fd56e0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 35 deletions.
3 changes: 2 additions & 1 deletion drivers/gpu/drm/vkms/vkms_crc.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// SPDX-License-Identifier: GPL-2.0
// SPDX-License-Identifier: GPL-2.0+

#include "vkms_drv.h"
#include <linux/crc32.h>
#include <drm/drm_atomic.h>
Expand Down
8 changes: 1 addition & 7 deletions drivers/gpu/drm/vkms/vkms_crtc.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
// SPDX-License-Identifier: GPL-2.0+

#include "vkms_drv.h"
#include <drm/drm_atomic_helper.h>
Expand Down
7 changes: 1 addition & 6 deletions drivers/gpu/drm/vkms/vkms_drv.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
// SPDX-License-Identifier: GPL-2.0+

/**
* DOC: vkms (Virtual Kernel Modesetting)
Expand Down
2 changes: 2 additions & 0 deletions drivers/gpu/drm/vkms/vkms_drv.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* SPDX-License-Identifier: GPL-2.0+ */

#ifndef _VKMS_DRV_H_
#define _VKMS_DRV_H_

Expand Down
8 changes: 1 addition & 7 deletions drivers/gpu/drm/vkms/vkms_gem.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
// SPDX-License-Identifier: GPL-2.0+

#include <linux/shmem_fs.h>

Expand Down
8 changes: 1 addition & 7 deletions drivers/gpu/drm/vkms/vkms_output.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
// SPDX-License-Identifier: GPL-2.0+

#include "vkms_drv.h"
#include <drm/drm_crtc_helper.h>
Expand Down
8 changes: 1 addition & 7 deletions drivers/gpu/drm/vkms/vkms_plane.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
// SPDX-License-Identifier: GPL-2.0+

#include "vkms_drv.h"
#include <drm/drm_plane_helper.h>
Expand Down

0 comments on commit 7fd56e0

Please sign in to comment.