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
e0cdd1e5
Commit
e0cdd1e5
authored
Nov 22, 2012
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/mc: allow calling of multiple handlers for a give intr bit
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
3cb0ebdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
drivers/gpu/drm/nouveau/core/subdev/mc/base.c
drivers/gpu/drm/nouveau/core/subdev/mc/base.c
+4
-4
No files found.
drivers/gpu/drm/nouveau/core/subdev/mc/base.c
View file @
e0cdd1e5
...
@@ -30,20 +30,20 @@ nouveau_mc_intr(struct nouveau_subdev *subdev)
...
@@ -30,20 +30,20 @@ nouveau_mc_intr(struct nouveau_subdev *subdev)
struct
nouveau_mc
*
pmc
=
nouveau_mc
(
subdev
);
struct
nouveau_mc
*
pmc
=
nouveau_mc
(
subdev
);
const
struct
nouveau_mc_intr
*
map
=
pmc
->
intr_map
;
const
struct
nouveau_mc_intr
*
map
=
pmc
->
intr_map
;
struct
nouveau_subdev
*
unit
;
struct
nouveau_subdev
*
unit
;
u32
stat
;
u32
stat
,
intr
;
stat
=
nv_rd32
(
pmc
,
0x000100
);
intr
=
stat
=
nv_rd32
(
pmc
,
0x000100
);
while
(
stat
&&
map
->
stat
)
{
while
(
stat
&&
map
->
stat
)
{
if
(
stat
&
map
->
stat
)
{
if
(
stat
&
map
->
stat
)
{
unit
=
nouveau_subdev
(
subdev
,
map
->
unit
);
unit
=
nouveau_subdev
(
subdev
,
map
->
unit
);
if
(
unit
&&
unit
->
intr
)
if
(
unit
&&
unit
->
intr
)
unit
->
intr
(
unit
);
unit
->
intr
(
unit
);
stat
&=
~
map
->
stat
;
intr
&=
~
map
->
stat
;
}
}
map
++
;
map
++
;
}
}
if
(
stat
)
{
if
(
intr
)
{
nv_error
(
pmc
,
"unknown intr 0x%08x
\n
"
,
stat
);
nv_error
(
pmc
,
"unknown intr 0x%08x
\n
"
,
stat
);
}
}
}
}
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