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
2079b4ad
Commit
2079b4ad
authored
Mar 02, 2003
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FRAMEBUFFER]: Convert TCX driver to new APIs.
parent
7e2fb365
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
501 additions
and
370 deletions
+501
-370
drivers/video/Kconfig
drivers/video/Kconfig
+1
-1
drivers/video/Makefile
drivers/video/Makefile
+2
-1
drivers/video/fbmem.c
drivers/video/fbmem.c
+5
-0
drivers/video/tcx.c
drivers/video/tcx.c
+493
-0
drivers/video/tcxfb.c
drivers/video/tcxfb.c
+0
-368
No files found.
drivers/video/Kconfig
View file @
2079b4ad
...
@@ -818,7 +818,7 @@ config FB_FFB
...
@@ -818,7 +818,7 @@ config FB_FFB
config FB_TCX
config FB_TCX
bool "TCX (SS4/SS5 only) support"
bool "TCX (SS4/SS5 only) support"
depends on FB_SBUS
&& SPARC32
depends on FB_SBUS
help
help
This is the frame buffer device driver for the TCX 24/8bit frame
This is the frame buffer device driver for the TCX 24/8bit frame
buffer.
buffer.
...
...
drivers/video/Makefile
View file @
2079b4ad
...
@@ -71,7 +71,6 @@ obj-$(CONFIG_FB_PVR2) += pvr2fb.o
...
@@ -71,7 +71,6 @@ 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
# One by one these are being converted over to the new APIs
#obj-$(CONFIG_FB_TCX) += tcxfb.o sbusfb.o
#obj-$(CONFIG_FB_LEO) += leofb.o sbusfb.o
#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
...
@@ -84,6 +83,8 @@ obj-$(CONFIG_FB_CG14) += cg14.o sbuslib.o cfbimgblt.o cfbcopyarea.o
...
@@ -84,6 +83,8 @@ obj-$(CONFIG_FB_CG14) += cg14.o sbuslib.o cfbimgblt.o cfbcopyarea.o
cfbfillrect.o
cfbfillrect.o
obj-$(CONFIG_FB_P9100)
+=
p9100.o sbuslib.o cfbimgblt.o cfbcopyarea.o
\
obj-$(CONFIG_FB_P9100)
+=
p9100.o sbuslib.o cfbimgblt.o cfbcopyarea.o
\
cfbfillrect.o
cfbfillrect.o
obj-$(CONFIG_FB_TCX)
+=
tcx.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 @
2079b4ad
...
@@ -156,6 +156,8 @@ extern int cg14_init(void);
...
@@ -156,6 +156,8 @@ extern int cg14_init(void);
extern
int
cg14_setup
(
char
*
);
extern
int
cg14_setup
(
char
*
);
extern
int
p9100_init
(
void
);
extern
int
p9100_init
(
void
);
extern
int
p9100_setup
(
char
*
);
extern
int
p9100_setup
(
char
*
);
extern
int
tcx_init
(
void
);
extern
int
tcx_setup
(
char
*
);
static
struct
{
static
struct
{
const
char
*
name
;
const
char
*
name
;
...
@@ -265,6 +267,9 @@ static struct {
...
@@ -265,6 +267,9 @@ static struct {
#ifdef CONFIG_FB_P9100
#ifdef CONFIG_FB_P9100
{
"p9100"
,
p9100_init
,
p9100_setup
},
{
"p9100"
,
p9100_init
,
p9100_setup
},
#endif
#endif
#ifdef CONFIG_FB_TCX
{
"tcx"
,
tcx_init
,
tcx_setup
},
#endif
/*
/*
* Generic drivers that are used as fallbacks
* Generic drivers that are used as fallbacks
...
...
drivers/video/tcx.c
0 → 100644
View file @
2079b4ad
This diff is collapsed.
Click to expand it.
drivers/video/tcxfb.c
deleted
100644 → 0
View file @
7e2fb365
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