Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a8d854c1
Commit
a8d854c1
authored
Jun 01, 2016
by
Rob Clark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/msm: bump kernel api version
Signed-off-by:
Rob Clark
<
robdclark@gmail.com
>
parent
6b597ce2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
drivers/gpu/drm/msm/msm_drv.c
drivers/gpu/drm/msm/msm_drv.c
+13
-2
No files found.
drivers/gpu/drm/msm/msm_drv.c
View file @
a8d854c1
...
@@ -21,6 +21,16 @@
...
@@ -21,6 +21,16 @@
#include "msm_gpu.h"
#include "msm_gpu.h"
#include "msm_kms.h"
#include "msm_kms.h"
/*
* MSM driver version:
* - 1.0.0 - initial interface
* - 1.1.0 - adds madvise, and support for submits with > 4 cmd buffers
*/
#define MSM_VERSION_MAJOR 1
#define MSM_VERSION_MINOR 1
#define MSM_VERSION_PATCHLEVEL 0
static
void
msm_fb_output_poll_changed
(
struct
drm_device
*
dev
)
static
void
msm_fb_output_poll_changed
(
struct
drm_device
*
dev
)
{
{
struct
msm_drm_private
*
priv
=
dev
->
dev_private
;
struct
msm_drm_private
*
priv
=
dev
->
dev_private
;
...
@@ -807,8 +817,9 @@ static struct drm_driver msm_driver = {
...
@@ -807,8 +817,9 @@ static struct drm_driver msm_driver = {
.
name
=
"msm"
,
.
name
=
"msm"
,
.
desc
=
"MSM Snapdragon DRM"
,
.
desc
=
"MSM Snapdragon DRM"
,
.
date
=
"20130625"
,
.
date
=
"20130625"
,
.
major
=
1
,
.
major
=
MSM_VERSION_MAJOR
,
.
minor
=
0
,
.
minor
=
MSM_VERSION_MINOR
,
.
patchlevel
=
MSM_VERSION_PATCHLEVEL
,
};
};
#ifdef CONFIG_PM_SLEEP
#ifdef CONFIG_PM_SLEEP
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment