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
2996867d
Commit
2996867d
authored
Jun 03, 2004
by
Alexander Viro
Committed by
Linus Torvalds
Jun 03, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] sparse: trident annotation
Both ALSA and OSS variants
parent
2b7485b4
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
39 deletions
+41
-39
include/sound/trident.h
include/sound/trident.h
+1
-1
sound/oss/trident.c
sound/oss/trident.c
+37
-35
sound/pci/trident/trident_memory.c
sound/pci/trident/trident_memory.c
+1
-1
sound/pci/trident/trident_synth.c
sound/pci/trident/trident_synth.c
+2
-2
No files found.
include/sound/trident.h
View file @
2996867d
...
@@ -479,6 +479,6 @@ int snd_trident_free_pages(trident_t *trident, snd_util_memblk_t *blk);
...
@@ -479,6 +479,6 @@ int snd_trident_free_pages(trident_t *trident, snd_util_memblk_t *blk);
snd_util_memblk_t
*
snd_trident_synth_alloc
(
trident_t
*
trident
,
unsigned
int
size
);
snd_util_memblk_t
*
snd_trident_synth_alloc
(
trident_t
*
trident
,
unsigned
int
size
);
int
snd_trident_synth_free
(
trident_t
*
trident
,
snd_util_memblk_t
*
blk
);
int
snd_trident_synth_free
(
trident_t
*
trident
,
snd_util_memblk_t
*
blk
);
int
snd_trident_synth_bzero
(
trident_t
*
trident
,
snd_util_memblk_t
*
blk
,
int
offset
,
int
size
);
int
snd_trident_synth_bzero
(
trident_t
*
trident
,
snd_util_memblk_t
*
blk
,
int
offset
,
int
size
);
int
snd_trident_synth_copy_from_user
(
trident_t
*
trident
,
snd_util_memblk_t
*
blk
,
int
offset
,
const
char
*
data
,
int
size
);
int
snd_trident_synth_copy_from_user
(
trident_t
*
trident
,
snd_util_memblk_t
*
blk
,
int
offset
,
const
char
__user
*
data
,
int
size
);
#endif
/* __SOUND_TRIDENT_H */
#endif
/* __SOUND_TRIDENT_H */
sound/oss/trident.c
View file @
2996867d
...
@@ -497,7 +497,8 @@ static void ali_setup_spdif_in(struct trident_card *card);
...
@@ -497,7 +497,8 @@ static void ali_setup_spdif_in(struct trident_card *card);
static
void
ali_disable_spdif_in
(
struct
trident_card
*
card
);
static
void
ali_disable_spdif_in
(
struct
trident_card
*
card
);
static
void
ali_disable_special_channel
(
struct
trident_card
*
card
,
int
ch
);
static
void
ali_disable_special_channel
(
struct
trident_card
*
card
,
int
ch
);
static
void
ali_setup_spdif_out
(
struct
trident_card
*
card
,
int
flag
);
static
void
ali_setup_spdif_out
(
struct
trident_card
*
card
,
int
flag
);
static
int
ali_write_5_1
(
struct
trident_state
*
state
,
const
char
*
buffer
,
static
int
ali_write_5_1
(
struct
trident_state
*
state
,
const
char
__user
*
buffer
,
int
cnt_for_multi_channel
,
unsigned
int
*
copy_count
,
int
cnt_for_multi_channel
,
unsigned
int
*
copy_count
,
unsigned
int
*
state_cnt
);
unsigned
int
*
state_cnt
);
static
int
ali_allocate_other_states_resources
(
struct
trident_state
*
state
,
static
int
ali_allocate_other_states_resources
(
struct
trident_state
*
state
,
...
@@ -1861,7 +1862,7 @@ trident_interrupt(int irq, void *dev_id, struct pt_regs *regs)
...
@@ -1861,7 +1862,7 @@ trident_interrupt(int irq, void *dev_id, struct pt_regs *regs)
/* to be copied to the user's buffer. it is filled by the dma machine and */
/* to be copied to the user's buffer. it is filled by the dma machine and */
/* drained by this loop. */
/* drained by this loop. */
static
ssize_t
static
ssize_t
trident_read
(
struct
file
*
file
,
char
*
buffer
,
size_t
count
,
loff_t
*
ppos
)
trident_read
(
struct
file
*
file
,
char
__user
*
buffer
,
size_t
count
,
loff_t
*
ppos
)
{
{
struct
trident_state
*
state
=
(
struct
trident_state
*
)
file
->
private_data
;
struct
trident_state
*
state
=
(
struct
trident_state
*
)
file
->
private_data
;
struct
dmabuf
*
dmabuf
=
&
state
->
dmabuf
;
struct
dmabuf
*
dmabuf
=
&
state
->
dmabuf
;
...
@@ -1976,7 +1977,7 @@ trident_read(struct file *file, char *buffer, size_t count, loff_t * ppos)
...
@@ -1976,7 +1977,7 @@ trident_read(struct file *file, char *buffer, size_t count, loff_t * ppos)
the soundcard. it is drained by the dma machine and filled by this loop. */
the soundcard. it is drained by the dma machine and filled by this loop. */
static
ssize_t
static
ssize_t
trident_write
(
struct
file
*
file
,
const
char
*
buffer
,
size_t
count
,
loff_t
*
ppos
)
trident_write
(
struct
file
*
file
,
const
char
__user
*
buffer
,
size_t
count
,
loff_t
*
ppos
)
{
{
struct
trident_state
*
state
=
(
struct
trident_state
*
)
file
->
private_data
;
struct
trident_state
*
state
=
(
struct
trident_state
*
)
file
->
private_data
;
struct
dmabuf
*
dmabuf
=
&
state
->
dmabuf
;
struct
dmabuf
*
dmabuf
=
&
state
->
dmabuf
;
...
@@ -2247,8 +2248,9 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2247,8 +2248,9 @@ trident_ioctl(struct inode *inode, struct file *file,
audio_buf_info
abinfo
;
audio_buf_info
abinfo
;
count_info
cinfo
;
count_info
cinfo
;
int
val
,
mapped
,
ret
=
0
;
int
val
,
mapped
,
ret
=
0
;
struct
trident_card
*
card
=
state
->
card
;
struct
trident_card
*
card
=
state
->
card
;
void
__user
*
argp
=
(
void
__user
*
)
arg
;
int
__user
*
p
=
argp
;
VALIDATE_STATE
(
state
);
VALIDATE_STATE
(
state
);
...
@@ -2256,11 +2258,11 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2256,11 +2258,11 @@ trident_ioctl(struct inode *inode, struct file *file,
mapped
=
((
file
->
f_mode
&
(
FMODE_WRITE
|
FMODE_READ
))
&&
dmabuf
->
mapped
);
mapped
=
((
file
->
f_mode
&
(
FMODE_WRITE
|
FMODE_READ
))
&&
dmabuf
->
mapped
);
pr_debug
(
"trident: trident_ioctl, command = %2d, arg = 0x%08x
\n
"
,
pr_debug
(
"trident: trident_ioctl, command = %2d, arg = 0x%08x
\n
"
,
_IOC_NR
(
cmd
),
arg
?
*
(
int
*
)
arg
:
0
);
_IOC_NR
(
cmd
),
arg
?
*
p
:
0
);
switch
(
cmd
)
{
switch
(
cmd
)
{
case
OSS_GETVERSION
:
case
OSS_GETVERSION
:
ret
=
put_user
(
SOUND_VERSION
,
(
int
*
)
arg
);
ret
=
put_user
(
SOUND_VERSION
,
p
);
break
;
break
;
case
SNDCTL_DSP_RESET
:
case
SNDCTL_DSP_RESET
:
...
@@ -2287,7 +2289,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2287,7 +2289,7 @@ trident_ioctl(struct inode *inode, struct file *file,
break
;
break
;
case
SNDCTL_DSP_SPEED
:
/* set smaple rate */
case
SNDCTL_DSP_SPEED
:
/* set smaple rate */
if
(
get_user
(
val
,
(
int
*
)
arg
))
{
if
(
get_user
(
val
,
p
))
{
ret
=
-
EFAULT
;
ret
=
-
EFAULT
;
break
;
break
;
}
}
...
@@ -2307,11 +2309,11 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2307,11 +2309,11 @@ trident_ioctl(struct inode *inode, struct file *file,
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
}
}
}
}
ret
=
put_user
(
dmabuf
->
rate
,
(
int
*
)
arg
);
ret
=
put_user
(
dmabuf
->
rate
,
p
);
break
;
break
;
case
SNDCTL_DSP_STEREO
:
/* set stereo or mono channel */
case
SNDCTL_DSP_STEREO
:
/* set stereo or mono channel */
if
(
get_user
(
val
,
(
int
*
)
arg
))
{
if
(
get_user
(
val
,
p
))
{
ret
=
-
EFAULT
;
ret
=
-
EFAULT
;
break
;
break
;
}
}
...
@@ -2342,14 +2344,14 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2342,14 +2344,14 @@ trident_ioctl(struct inode *inode, struct file *file,
if
((
val
=
prog_dmabuf_playback
(
state
)))
if
((
val
=
prog_dmabuf_playback
(
state
)))
ret
=
val
;
ret
=
val
;
else
else
ret
=
put_user
(
dmabuf
->
fragsize
,
(
int
*
)
arg
);
ret
=
put_user
(
dmabuf
->
fragsize
,
p
);
break
;
break
;
}
}
if
(
file
->
f_mode
&
FMODE_READ
)
{
if
(
file
->
f_mode
&
FMODE_READ
)
{
if
((
val
=
prog_dmabuf_record
(
state
)))
if
((
val
=
prog_dmabuf_record
(
state
)))
ret
=
val
;
ret
=
val
;
else
else
ret
=
put_user
(
dmabuf
->
fragsize
,
(
int
*
)
arg
);
ret
=
put_user
(
dmabuf
->
fragsize
,
p
);
break
;
break
;
}
}
/* neither READ nor WRITE? is this even possible? */
/* neither READ nor WRITE? is this even possible? */
...
@@ -2359,11 +2361,11 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2359,11 +2361,11 @@ trident_ioctl(struct inode *inode, struct file *file,
case
SNDCTL_DSP_GETFMTS
:
/* Returns a mask of supported sample format */
case
SNDCTL_DSP_GETFMTS
:
/* Returns a mask of supported sample format */
ret
=
put_user
(
AFMT_S16_LE
|
AFMT_U16_LE
|
AFMT_S8
|
ret
=
put_user
(
AFMT_S16_LE
|
AFMT_U16_LE
|
AFMT_S8
|
AFMT_U8
,
(
int
*
)
arg
);
AFMT_U8
,
p
);
break
;
break
;
case
SNDCTL_DSP_SETFMT
:
/* Select sample format */
case
SNDCTL_DSP_SETFMT
:
/* Select sample format */
if
(
get_user
(
val
,
(
int
*
)
arg
))
{
if
(
get_user
(
val
,
p
))
{
ret
=
-
EFAULT
;
ret
=
-
EFAULT
;
break
;
break
;
}
}
...
@@ -2390,11 +2392,11 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2390,11 +2392,11 @@ trident_ioctl(struct inode *inode, struct file *file,
}
}
unlock_set_fmt
(
state
);
unlock_set_fmt
(
state
);
ret
=
put_user
((
dmabuf
->
fmt
&
TRIDENT_FMT_16BIT
)
?
AFMT_S16_LE
:
ret
=
put_user
((
dmabuf
->
fmt
&
TRIDENT_FMT_16BIT
)
?
AFMT_S16_LE
:
AFMT_U8
,
(
int
*
)
arg
);
AFMT_U8
,
p
);
break
;
break
;
case
SNDCTL_DSP_CHANNELS
:
case
SNDCTL_DSP_CHANNELS
:
if
(
get_user
(
val
,
(
int
*
)
arg
))
{
if
(
get_user
(
val
,
p
))
{
ret
=
-
EFAULT
;
ret
=
-
EFAULT
;
break
;
break
;
}
}
...
@@ -2458,7 +2460,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2458,7 +2460,7 @@ trident_ioctl(struct inode *inode, struct file *file,
}
}
unlock_set_fmt
(
state
);
unlock_set_fmt
(
state
);
}
}
ret
=
put_user
(
val
,
(
int
*
)
arg
);
ret
=
put_user
(
val
,
p
);
break
;
break
;
case
SNDCTL_DSP_POST
:
case
SNDCTL_DSP_POST
:
...
@@ -2470,7 +2472,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2470,7 +2472,7 @@ trident_ioctl(struct inode *inode, struct file *file,
ret
=
-
EINVAL
;
ret
=
-
EINVAL
;
break
;
break
;
}
}
if
(
get_user
(
val
,
(
int
*
)
arg
))
{
if
(
get_user
(
val
,
p
))
{
ret
=
-
EFAULT
;
ret
=
-
EFAULT
;
break
;
break
;
}
}
...
@@ -2482,7 +2484,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2482,7 +2484,7 @@ trident_ioctl(struct inode *inode, struct file *file,
break
;
break
;
case
SNDCTL_DSP_SETFRAGMENT
:
case
SNDCTL_DSP_SETFRAGMENT
:
if
(
get_user
(
val
,
(
int
*
)
arg
))
{
if
(
get_user
(
val
,
p
))
{
ret
=
-
EFAULT
;
ret
=
-
EFAULT
;
break
;
break
;
}
}
...
@@ -2514,7 +2516,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2514,7 +2516,7 @@ trident_ioctl(struct inode *inode, struct file *file,
abinfo
.
fragstotal
=
dmabuf
->
numfrag
;
abinfo
.
fragstotal
=
dmabuf
->
numfrag
;
abinfo
.
fragments
=
abinfo
.
bytes
>>
dmabuf
->
fragshift
;
abinfo
.
fragments
=
abinfo
.
bytes
>>
dmabuf
->
fragshift
;
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
ret
=
copy_to_user
(
(
void
*
)
arg
,
&
abinfo
,
sizeof
(
abinfo
))
?
ret
=
copy_to_user
(
argp
,
&
abinfo
,
sizeof
(
abinfo
))
?
-
EFAULT
:
0
;
-
EFAULT
:
0
;
break
;
break
;
...
@@ -2534,7 +2536,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2534,7 +2536,7 @@ trident_ioctl(struct inode *inode, struct file *file,
abinfo
.
fragstotal
=
dmabuf
->
numfrag
;
abinfo
.
fragstotal
=
dmabuf
->
numfrag
;
abinfo
.
fragments
=
abinfo
.
bytes
>>
dmabuf
->
fragshift
;
abinfo
.
fragments
=
abinfo
.
bytes
>>
dmabuf
->
fragshift
;
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
ret
=
copy_to_user
(
(
void
*
)
arg
,
&
abinfo
,
sizeof
(
abinfo
))
?
ret
=
copy_to_user
(
argp
,
&
abinfo
,
sizeof
(
abinfo
))
?
-
EFAULT
:
0
;
-
EFAULT
:
0
;
break
;
break
;
...
@@ -2544,7 +2546,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2544,7 +2546,7 @@ trident_ioctl(struct inode *inode, struct file *file,
case
SNDCTL_DSP_GETCAPS
:
case
SNDCTL_DSP_GETCAPS
:
ret
=
put_user
(
DSP_CAP_REALTIME
|
DSP_CAP_TRIGGER
|
ret
=
put_user
(
DSP_CAP_REALTIME
|
DSP_CAP_TRIGGER
|
DSP_CAP_MMAP
|
DSP_CAP_BIND
,
(
int
*
)
arg
);
DSP_CAP_MMAP
|
DSP_CAP_BIND
,
p
);
break
;
break
;
case
SNDCTL_DSP_GETTRIGGER
:
case
SNDCTL_DSP_GETTRIGGER
:
...
@@ -2553,11 +2555,11 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2553,11 +2555,11 @@ trident_ioctl(struct inode *inode, struct file *file,
val
|=
PCM_ENABLE_INPUT
;
val
|=
PCM_ENABLE_INPUT
;
if
((
file
->
f_mode
&
FMODE_WRITE
)
&&
dmabuf
->
enable
)
if
((
file
->
f_mode
&
FMODE_WRITE
)
&&
dmabuf
->
enable
)
val
|=
PCM_ENABLE_OUTPUT
;
val
|=
PCM_ENABLE_OUTPUT
;
ret
=
put_user
(
val
,
(
int
*
)
arg
);
ret
=
put_user
(
val
,
p
);
break
;
break
;
case
SNDCTL_DSP_SETTRIGGER
:
case
SNDCTL_DSP_SETTRIGGER
:
if
(
get_user
(
val
,
(
int
*
)
arg
))
{
if
(
get_user
(
val
,
p
))
{
ret
=
-
EFAULT
;
ret
=
-
EFAULT
;
break
;
break
;
}
}
...
@@ -2599,7 +2601,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2599,7 +2601,7 @@ trident_ioctl(struct inode *inode, struct file *file,
if
(
dmabuf
->
mapped
)
if
(
dmabuf
->
mapped
)
dmabuf
->
count
&=
dmabuf
->
fragsize
-
1
;
dmabuf
->
count
&=
dmabuf
->
fragsize
-
1
;
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
ret
=
copy_to_user
(
(
void
*
)
arg
,
&
cinfo
,
sizeof
(
cinfo
))
?
ret
=
copy_to_user
(
argp
,
&
cinfo
,
sizeof
(
cinfo
))
?
-
EFAULT
:
0
;
-
EFAULT
:
0
;
break
;
break
;
...
@@ -2622,7 +2624,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2622,7 +2624,7 @@ trident_ioctl(struct inode *inode, struct file *file,
if
(
dmabuf
->
mapped
)
if
(
dmabuf
->
mapped
)
dmabuf
->
count
&=
dmabuf
->
fragsize
-
1
;
dmabuf
->
count
&=
dmabuf
->
fragsize
-
1
;
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
ret
=
copy_to_user
(
(
void
*
)
arg
,
&
cinfo
,
sizeof
(
cinfo
))
?
ret
=
copy_to_user
(
argp
,
&
cinfo
,
sizeof
(
cinfo
))
?
-
EFAULT
:
0
;
-
EFAULT
:
0
;
break
;
break
;
...
@@ -2643,26 +2645,26 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2643,26 +2645,26 @@ trident_ioctl(struct inode *inode, struct file *file,
trident_update_ptr
(
state
);
trident_update_ptr
(
state
);
val
=
dmabuf
->
count
;
val
=
dmabuf
->
count
;
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
state
->
card
->
lock
,
flags
);
ret
=
put_user
(
val
,
(
int
*
)
arg
);
ret
=
put_user
(
val
,
p
);
break
;
break
;
case
SOUND_PCM_READ_RATE
:
case
SOUND_PCM_READ_RATE
:
ret
=
put_user
(
dmabuf
->
rate
,
(
int
*
)
arg
);
ret
=
put_user
(
dmabuf
->
rate
,
p
);
break
;
break
;
case
SOUND_PCM_READ_CHANNELS
:
case
SOUND_PCM_READ_CHANNELS
:
ret
=
put_user
((
dmabuf
->
fmt
&
TRIDENT_FMT_STEREO
)
?
2
:
1
,
ret
=
put_user
((
dmabuf
->
fmt
&
TRIDENT_FMT_STEREO
)
?
2
:
1
,
(
int
*
)
arg
);
p
);
break
;
break
;
case
SOUND_PCM_READ_BITS
:
case
SOUND_PCM_READ_BITS
:
ret
=
put_user
((
dmabuf
->
fmt
&
TRIDENT_FMT_16BIT
)
?
AFMT_S16_LE
:
ret
=
put_user
((
dmabuf
->
fmt
&
TRIDENT_FMT_16BIT
)
?
AFMT_S16_LE
:
AFMT_U8
,
(
int
*
)
arg
);
AFMT_U8
,
p
);
break
;
break
;
case
SNDCTL_DSP_GETCHANNELMASK
:
case
SNDCTL_DSP_GETCHANNELMASK
:
ret
=
put_user
(
DSP_BIND_FRONT
|
DSP_BIND_SURR
|
ret
=
put_user
(
DSP_BIND_FRONT
|
DSP_BIND_SURR
|
DSP_BIND_CENTER_LFE
,
(
int
*
)
arg
);
DSP_BIND_CENTER_LFE
,
p
);
break
;
break
;
case
SNDCTL_DSP_BIND_CHANNEL
:
case
SNDCTL_DSP_BIND_CHANNEL
:
...
@@ -2671,7 +2673,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2671,7 +2673,7 @@ trident_ioctl(struct inode *inode, struct file *file,
break
;
break
;
}
}
if
(
get_user
(
val
,
(
int
*
)
arg
))
{
if
(
get_user
(
val
,
p
))
{
ret
=
-
EFAULT
;
ret
=
-
EFAULT
;
break
;
break
;
}
}
...
@@ -2688,7 +2690,7 @@ trident_ioctl(struct inode *inode, struct file *file,
...
@@ -2688,7 +2690,7 @@ trident_ioctl(struct inode *inode, struct file *file,
SRC_ENABLE
);
SRC_ENABLE
);
dmabuf
->
channel
->
attribute
|=
mask2attr
[
ffs
(
val
)];
dmabuf
->
channel
->
attribute
|=
mask2attr
[
ffs
(
val
)];
}
}
ret
=
put_user
(
val
,
(
int
*
)
arg
);
ret
=
put_user
(
val
,
p
);
break
;
break
;
case
SNDCTL_DSP_MAPINBUF
:
case
SNDCTL_DSP_MAPINBUF
:
...
@@ -3878,14 +3880,14 @@ depend on a master state's DMA, and changing the counters of the master
...
@@ -3878,14 +3880,14 @@ depend on a master state's DMA, and changing the counters of the master
state DMA is protected by a spinlock.
state DMA is protected by a spinlock.
*/
*/
static
int
static
int
ali_write_5_1
(
struct
trident_state
*
state
,
const
char
*
buf
,
ali_write_5_1
(
struct
trident_state
*
state
,
const
char
__user
*
buf
,
int
cnt_for_multi_channel
,
unsigned
int
*
copy_count
,
int
cnt_for_multi_channel
,
unsigned
int
*
copy_count
,
unsigned
int
*
state_cnt
)
unsigned
int
*
state_cnt
)
{
{
struct
dmabuf
*
dmabuf
=
&
state
->
dmabuf
;
struct
dmabuf
*
dmabuf
=
&
state
->
dmabuf
;
struct
dmabuf
*
dmabuf_temp
;
struct
dmabuf
*
dmabuf_temp
;
const
char
*
buffer
=
buf
;
const
char
__user
*
buffer
=
buf
;
unsigned
swptr
,
other_dma_nums
,
sample_s
;
unsigned
swptr
,
other_dma_nums
,
sample_s
;
unsigned
int
i
,
loop
;
unsigned
int
i
,
loop
;
...
@@ -4018,7 +4020,7 @@ ali_free_other_states_resources(struct trident_state *state)
...
@@ -4018,7 +4020,7 @@ ali_free_other_states_resources(struct trident_state *state)
struct
proc_dir_entry
*
res
;
struct
proc_dir_entry
*
res
;
static
int
static
int
ali_write_proc
(
struct
file
*
file
,
const
char
*
buffer
,
unsigned
long
count
,
void
*
data
)
ali_write_proc
(
struct
file
*
file
,
const
char
__user
*
buffer
,
unsigned
long
count
,
void
*
data
)
{
{
struct
trident_card
*
card
=
(
struct
trident_card
*
)
data
;
struct
trident_card
*
card
=
(
struct
trident_card
*
)
data
;
unsigned
long
flags
;
unsigned
long
flags
;
...
...
sound/pci/trident/trident_memory.c
View file @
2996867d
...
@@ -471,7 +471,7 @@ int snd_trident_synth_bzero(trident_t *trident, snd_util_memblk_t *blk, int offs
...
@@ -471,7 +471,7 @@ int snd_trident_synth_bzero(trident_t *trident, snd_util_memblk_t *blk, int offs
/*
/*
* copy_from_user(blk + offset, data, size)
* copy_from_user(blk + offset, data, size)
*/
*/
int
snd_trident_synth_copy_from_user
(
trident_t
*
trident
,
snd_util_memblk_t
*
blk
,
int
offset
,
const
char
*
data
,
int
size
)
int
snd_trident_synth_copy_from_user
(
trident_t
*
trident
,
snd_util_memblk_t
*
blk
,
int
offset
,
const
char
__user
*
data
,
int
size
)
{
{
int
page
,
nextofs
,
end_offset
,
temp
,
temp1
;
int
page
,
nextofs
,
end_offset
,
temp
,
temp1
;
...
...
sound/pci/trident/trident_synth.c
View file @
2996867d
...
@@ -504,7 +504,7 @@ static void sample_private1(trident_t * trident, snd_trident_voice_t * voice, un
...
@@ -504,7 +504,7 @@ static void sample_private1(trident_t * trident, snd_trident_voice_t * voice, un
*/
*/
static
int
snd_trident_simple_put_sample
(
void
*
private_data
,
simple_instrument_t
*
instr
,
static
int
snd_trident_simple_put_sample
(
void
*
private_data
,
simple_instrument_t
*
instr
,
char
*
data
,
long
len
,
int
atomic
)
char
__user
*
data
,
long
len
,
int
atomic
)
{
{
trident_t
*
trident
=
snd_magic_cast
(
trident_t
,
private_data
,
return
-
ENXIO
);
trident_t
*
trident
=
snd_magic_cast
(
trident_t
,
private_data
,
return
-
ENXIO
);
int
size
=
instr
->
size
;
int
size
=
instr
->
size
;
...
@@ -557,7 +557,7 @@ static int snd_trident_simple_put_sample(void *private_data, simple_instrument_t
...
@@ -557,7 +557,7 @@ static int snd_trident_simple_put_sample(void *private_data, simple_instrument_t
}
}
static
int
snd_trident_simple_get_sample
(
void
*
private_data
,
simple_instrument_t
*
instr
,
static
int
snd_trident_simple_get_sample
(
void
*
private_data
,
simple_instrument_t
*
instr
,
char
*
data
,
long
len
,
int
atomic
)
char
__user
*
data
,
long
len
,
int
atomic
)
{
{
//trident_t *trident = snd_magic_cast(trident_t, private_data, return -ENXIO);
//trident_t *trident = snd_magic_cast(trident_t, private_data, return -ENXIO);
int
size
=
instr
->
size
;
int
size
=
instr
->
size
;
...
...
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