Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
73d72cff
Commit
73d72cff
authored
Feb 18, 2006
by
Dave Airlie
Committed by
Dave Airlie
Feb 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm: fix brace placement
Signed-off-by:
Dave Airlie
<
airlied@linux.ie
>
parent
4e5e2e25
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
drivers/char/drm/r300_cmdbuf.c
drivers/char/drm/r300_cmdbuf.c
+2
-4
No files found.
drivers/char/drm/r300_cmdbuf.c
View file @
73d72cff
...
...
@@ -506,8 +506,7 @@ static __inline__ int r300_emit_bitblt_multi(drm_radeon_private_t *dev_priv,
|
RADEON_GMC_DST_PITCH_OFFSET_CNTL
))
{
offset
=
cmd
[
2
]
<<
10
;
ret
=
r300_check_offset
(
dev_priv
,
offset
);
if
(
ret
)
{
if
(
ret
)
{
DRM_ERROR
(
"Invalid bitblt first offset is %08X
\n
"
,
offset
);
return
DRM_ERR
(
EINVAL
);
}
...
...
@@ -517,8 +516,7 @@ static __inline__ int r300_emit_bitblt_multi(drm_radeon_private_t *dev_priv,
(
cmd
[
1
]
&
RADEON_GMC_DST_PITCH_OFFSET_CNTL
))
{
offset
=
cmd
[
3
]
<<
10
;
ret
=
r300_check_offset
(
dev_priv
,
offset
);
if
(
ret
)
{
if
(
ret
)
{
DRM_ERROR
(
"Invalid bitblt second offset is %08X
\n
"
,
offset
);
return
DRM_ERR
(
EINVAL
);
}
...
...
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