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
nexedi
linux
Commits
476d1e91
Commit
476d1e91
authored
Jun 30, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://linux-ntfs.bkbits.net/ntfs-tng-2.5
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
464541b3
485c916b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
4 deletions
+39
-4
drivers/video/matrox/matroxfb_base.c
drivers/video/matrox/matroxfb_base.c
+14
-1
drivers/video/matrox/matroxfb_crtc2.c
drivers/video/matrox/matroxfb_crtc2.c
+16
-3
sound/oss/maestro.c
sound/oss/maestro.c
+9
-0
No files found.
drivers/video/matrox/matroxfb_base.c
View file @
476d1e91
...
...
@@ -141,6 +141,19 @@ static struct fb_var_screeninfo vesafb_defined = {
/* --------------------------------------------------------------------- */
static
inline
void
my_install_cmap
(
WPMINFO2
)
{
/* Do not touch this code if you do not understand what it does! */
/* Never try to use do_install_cmap() instead. It is crap. */
struct
fb_cmap
*
cmap
=
&
ACCESS_FBINFO
(
currcon_display
)
->
cmap
;
if
(
cmap
->
len
)
fb_set_cmap
(
cmap
,
1
,
&
ACCESS_FBINFO
(
fbcon
));
else
fb_set_cmap
(
fb_default_cmap
(
ACCESS_FBINFO
(
curr
.
cmap_len
)),
1
,
&
ACCESS_FBINFO
(
fbcon
));
}
static
void
matrox_pan_var
(
WPMINFO
struct
fb_var_screeninfo
*
var
)
{
unsigned
int
pos
;
...
...
@@ -869,7 +882,7 @@ static int matroxfb_set_var(struct fb_var_screeninfo *var, int con,
up_read
(
&
ACCESS_FBINFO
(
altout
.
lock
));
}
matrox_cfbX_init
(
PMINFO
display
);
do_install_cmap
(
ACCESS_FBINFO
(
fbcon
.
currcon
),
&
ACCESS_FBINFO
(
fbcon
)
);
my_install_cmap
(
PMINFO2
);
#if defined(CONFIG_FB_COMPAT_XPMAC)
if
(
console_fb_info
==
&
ACCESS_FBINFO
(
fbcon
))
{
int
vmode
,
cmode
;
...
...
drivers/video/matrox/matroxfb_crtc2.c
View file @
476d1e91
...
...
@@ -29,7 +29,7 @@ MODULE_PARM_DESC(mem, "Memory size reserved for dualhead (default=8MB)");
static
int
matroxfb_dh_getcolreg
(
unsigned
regno
,
unsigned
*
red
,
unsigned
*
green
,
unsigned
*
blue
,
unsigned
*
transp
,
struct
fb_info
*
info
)
{
#define m2info ((struct matroxfb_dh_fb_info*)info)
if
(
regno
>
16
)
if
(
regno
>
=
16
)
return
1
;
*
red
=
m2info
->
palette
[
regno
].
red
;
*
blue
=
m2info
->
palette
[
regno
].
blue
;
...
...
@@ -44,7 +44,7 @@ static int matroxfb_dh_setcolreg(unsigned regno, unsigned red, unsigned green,
#define m2info ((struct matroxfb_dh_fb_info*)info)
struct
display
*
p
;
if
(
regno
>
16
)
if
(
regno
>
=
16
)
return
1
;
m2info
->
palette
[
regno
].
red
=
red
;
m2info
->
palette
[
regno
].
blue
=
blue
;
...
...
@@ -84,6 +84,19 @@ static int matroxfb_dh_setcolreg(unsigned regno, unsigned red, unsigned green,
#undef m2info
}
static
inline
void
my_install_cmap
(
struct
matroxfb_dh_fb_info
*
m2info
)
{
/* Do not touch this code if you do not understand what it does! */
/* Never try to use do_install_cmap() instead. It is crap. */
struct
fb_cmap
*
cmap
=
&
m2info
->
currcon_display
->
cmap
;
if
(
cmap
->
len
)
fb_set_cmap
(
cmap
,
1
,
&
m2info
->
fbcon
);
else
fb_set_cmap
(
fb_default_cmap
(
16
),
1
,
&
m2info
->
fbcon
);
}
static
void
matroxfb_dh_restore
(
struct
matroxfb_dh_fb_info
*
m2info
,
struct
my_timming
*
mt
,
struct
display
*
p
,
...
...
@@ -439,7 +452,7 @@ static int matroxfb_dh_set_var(struct fb_var_screeninfo* var, int con,
up_read
(
&
ACCESS_FBINFO
(
altout
.
lock
));
}
matroxfb_dh_cfbX_init
(
m2info
,
p
);
do_install_cmap
(
ACCESS_FBINFO
(
fbcon
.
currcon
),
&
ACCESS_FBINFO
(
fbcon
)
);
my_install_cmap
(
m2info
);
}
return
0
;
#undef m2info
...
...
sound/oss/maestro.c
View file @
476d1e91
...
...
@@ -3573,9 +3573,18 @@ maestro_probe(struct pci_dev *pcidev,const struct pci_device_id *pdid)
static
void
maestro_remove
(
struct
pci_dev
*
pcidev
)
{
struct
ess_card
*
card
=
pci_get_drvdata
(
pcidev
);
int
i
;
u32
n
;
/* XXX maybe should force stop bob, but should be all
stopped by _release by now */
/* Turn off hardware volume control interrupt.
This has to come before we leave the IRQ below,
or a crash results if a button is pressed ! */
n
=
inw
(
card
->
iobase
+
0x18
);
n
&=~
(
1
<<
6
);
outw
(
n
,
card
->
iobase
+
0x18
);
free_irq
(
card
->
irq
,
card
);
unregister_sound_mixer
(
card
->
dev_mixer
);
for
(
i
=
0
;
i
<
NR_DSPS
;
i
++
)
...
...
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