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
b9a22794
Commit
b9a22794
authored
Oct 04, 2007
by
Grant Likely
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[POWERPC] XilinxFB: sparse fixes
Signed-off-by:
Grant Likely
<
grant.likely@secretlab.ca
>
parent
e3cec003
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
drivers/video/xilinxfb.c
drivers/video/xilinxfb.c
+3
-3
No files found.
drivers/video/xilinxfb.c
View file @
b9a22794
...
...
@@ -118,7 +118,7 @@ struct xilinxfb_drvdata {
u32
regs_phys
;
/* phys. address of the control registers */
u32
__iomem
*
regs
;
/* virt. address of the control registers */
unsigned
char
__iomem
*
fb_virt
;
/* virt. address of the frame buffer */
void
*
fb_virt
;
/* virt. address of the frame buffer */
dma_addr_t
fb_phys
;
/* phys. address of the frame buffer */
u32
reg_ctrl_default
;
...
...
@@ -246,7 +246,7 @@ static int xilinxfb_assign(struct device *dev, unsigned long physaddr,
}
/* Clear (turn to black) the framebuffer */
memset_io
(
drvdata
->
fb_virt
,
0
,
FB_SIZE
);
memset_io
(
(
void
__iomem
*
)
drvdata
->
fb_virt
,
0
,
FB_SIZE
);
/* Tell the hardware where the frame buffer is */
xilinx_fb_out_be32
(
drvdata
,
REG_FB_ADDR
,
drvdata
->
fb_phys
);
...
...
@@ -259,7 +259,7 @@ static int xilinxfb_assign(struct device *dev, unsigned long physaddr,
/* Fill struct fb_info */
drvdata
->
info
.
device
=
dev
;
drvdata
->
info
.
screen_base
=
drvdata
->
fb_virt
;
drvdata
->
info
.
screen_base
=
(
void
__iomem
*
)
drvdata
->
fb_virt
;
drvdata
->
info
.
fbops
=
&
xilinxfb_ops
;
drvdata
->
info
.
fix
=
xilinx_fb_fix
;
drvdata
->
info
.
fix
.
smem_start
=
drvdata
->
fb_phys
;
...
...
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