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
9d1c4c51
Commit
9d1c4c51
authored
Jul 04, 2013
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nvf0/gr: enable support, if external cs ucode is available
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
b054aadf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c
drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c
+2
-1
drivers/gpu/drm/nouveau/core/engine/graph/nvf0.c
drivers/gpu/drm/nouveau/core/engine/graph/nvf0.c
+4
-0
No files found.
drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c
View file @
9d1c4c51
...
...
@@ -1132,7 +1132,8 @@ nvc0_graph_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
struct
nvc0_graph_priv
*
priv
;
int
ret
,
i
;
ret
=
nouveau_graph_create
(
parent
,
engine
,
bclass
,
true
,
&
priv
);
ret
=
nouveau_graph_create
(
parent
,
engine
,
bclass
,
(
oclass
->
fecs
.
ucode
!=
NULL
),
&
priv
);
*
pobject
=
nv_object
(
priv
);
if
(
ret
)
return
ret
;
...
...
drivers/gpu/drm/nouveau/core/engine/graph/nvf0.c
View file @
9d1c4c51
...
...
@@ -30,6 +30,10 @@
static
struct
nouveau_oclass
nvf0_graph_sclass
[]
=
{
{
0x902d
,
&
nouveau_object_ofuncs
},
{
0xa140
,
&
nouveau_object_ofuncs
},
{
0xa197
,
&
nouveau_object_ofuncs
},
{
0xa1c0
,
&
nouveau_object_ofuncs
},
{}
};
...
...
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