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
dce59451
Commit
dce59451
authored
Mar 07, 2003
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FRAMEBUFFER]: Convert SBUS LEO driver to new APIs.
parent
4c9ca50d
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
594 additions
and
767 deletions
+594
-767
drivers/video/Makefile
drivers/video/Makefile
+2
-3
drivers/video/fbmem.c
drivers/video/fbmem.c
+5
-0
drivers/video/leo.c
drivers/video/leo.c
+587
-0
drivers/video/leofb.c
drivers/video/leofb.c
+0
-764
No files found.
drivers/video/Makefile
View file @
dce59451
...
@@ -70,9 +70,6 @@ obj-$(CONFIG_FB_E1355) += epson1355fb.o
...
@@ -70,9 +70,6 @@ obj-$(CONFIG_FB_E1355) += epson1355fb.o
obj-$(CONFIG_FB_PVR2)
+=
pvr2fb.o
obj-$(CONFIG_FB_PVR2)
+=
pvr2fb.o
obj-$(CONFIG_FB_VOODOO1)
+=
sstfb.o cfbfillrect.o cfbcopyarea.o cfbimgblt.o
obj-$(CONFIG_FB_VOODOO1)
+=
sstfb.o cfbfillrect.o cfbcopyarea.o cfbimgblt.o
# One by one these are being converted over to the new APIs
#obj-$(CONFIG_FB_LEO) += leofb.o sbusfb.o
obj-$(CONFIG_FB_FFB)
+=
ffb.o sbuslib.o cfbimgblt.o cfbcopyarea.o
obj-$(CONFIG_FB_FFB)
+=
ffb.o sbuslib.o cfbimgblt.o cfbcopyarea.o
obj-$(CONFIG_FB_CG6)
+=
cg6.o sbuslib.o cfbimgblt.o cfbcopyarea.o
obj-$(CONFIG_FB_CG6)
+=
cg6.o sbuslib.o cfbimgblt.o cfbcopyarea.o
obj-$(CONFIG_FB_CG3)
+=
cg3.o sbuslib.o cfbimgblt.o cfbcopyarea.o
\
obj-$(CONFIG_FB_CG3)
+=
cg3.o sbuslib.o cfbimgblt.o cfbcopyarea.o
\
...
@@ -85,6 +82,8 @@ obj-$(CONFIG_FB_P9100) += p9100.o sbuslib.o cfbimgblt.o cfbcopyarea.
...
@@ -85,6 +82,8 @@ obj-$(CONFIG_FB_P9100) += p9100.o sbuslib.o cfbimgblt.o cfbcopyarea.
cfbfillrect.o
cfbfillrect.o
obj-$(CONFIG_FB_TCX)
+=
tcx.o sbuslib.o cfbimgblt.o cfbcopyarea.o
\
obj-$(CONFIG_FB_TCX)
+=
tcx.o sbuslib.o cfbimgblt.o cfbcopyarea.o
\
cfbfillrect.o
cfbfillrect.o
obj-$(CONFIG_FB_LEO)
+=
leo.o sbuslib.o cfbimgblt.o cfbcopyarea.o
\
cfbfillrect.o
# Files generated that shall be removed upon make clean
# Files generated that shall be removed upon make clean
clean-files
:=
promcon_tbl.c
clean-files
:=
promcon_tbl.c
...
...
drivers/video/fbmem.c
View file @
dce59451
...
@@ -158,6 +158,8 @@ extern int p9100_init(void);
...
@@ -158,6 +158,8 @@ extern int p9100_init(void);
extern
int
p9100_setup
(
char
*
);
extern
int
p9100_setup
(
char
*
);
extern
int
tcx_init
(
void
);
extern
int
tcx_init
(
void
);
extern
int
tcx_setup
(
char
*
);
extern
int
tcx_setup
(
char
*
);
extern
int
leo_init
(
void
);
extern
int
leo_setup
(
char
*
);
static
struct
{
static
struct
{
const
char
*
name
;
const
char
*
name
;
...
@@ -270,6 +272,9 @@ static struct {
...
@@ -270,6 +272,9 @@ static struct {
#ifdef CONFIG_FB_TCX
#ifdef CONFIG_FB_TCX
{
"tcx"
,
tcx_init
,
tcx_setup
},
{
"tcx"
,
tcx_init
,
tcx_setup
},
#endif
#endif
#ifdef CONFIG_FB_LEO
{
"leo"
,
leo_init
,
leo_setup
},
#endif
/*
/*
* Generic drivers that are used as fallbacks
* Generic drivers that are used as fallbacks
...
...
drivers/video/leo.c
0 → 100644
View file @
dce59451
This diff is collapsed.
Click to expand it.
drivers/video/leofb.c
deleted
100644 → 0
View file @
4c9ca50d
This diff is collapsed.
Click to expand it.
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