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
f1e706d0
Commit
f1e706d0
authored
Feb 09, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://linux-sound.bkbits.net/linux-sound
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
4d8c3efd
2125e971
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
4 deletions
+11
-4
include/sound/asound.h
include/sound/asound.h
+0
-1
include/sound/timer.h
include/sound/timer.h
+1
-0
include/sound/version.h
include/sound/version.h
+1
-1
sound/ppc/pmac.c
sound/ppc/pmac.c
+4
-0
sound/ppc/powermac.c
sound/ppc/powermac.c
+2
-0
sound/ppc/tumbler.c
sound/ppc/tumbler.c
+1
-0
sound/usb/usbaudio.c
sound/usb/usbaudio.c
+2
-2
No files found.
include/sound/asound.h
View file @
f1e706d0
...
...
@@ -32,7 +32,6 @@
#include <linux/types.h>
#include <linux/time.h>
#include <asm/byteorder.h>
#include <linux/interrupt.h>
#if __LITTLE_ENDIAN == 1234
#define SNDRV_LITTLE_ENDIAN
...
...
include/sound/timer.h
View file @
f1e706d0
...
...
@@ -23,6 +23,7 @@
*/
#include <sound/asound.h>
#include <linux/interrupt.h>
typedef
enum
sndrv_timer_class
snd_timer_class_t
;
typedef
enum
sndrv_timer_slave_class
snd_timer_slave_class_t
;
...
...
include/sound/version.h
View file @
f1e706d0
/* include/version.h. Generated by configure. */
#define CONFIG_SND_VERSION "0.9.0rc7"
#define CONFIG_SND_DATE " (S
at Feb 08 17:33:25
2003 UTC)"
#define CONFIG_SND_DATE " (S
un Feb 09 18:00:12
2003 UTC)"
sound/ppc/pmac.c
View file @
f1e706d0
...
...
@@ -26,6 +26,7 @@
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <sound/core.h>
#include "pmac.h"
#include <sound/pcm_params.h>
...
...
@@ -695,6 +696,7 @@ int __init snd_pmac_pcm_new(pmac_t *chip)
}
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
/*
* beep stuff
...
...
@@ -931,6 +933,8 @@ int __init snd_pmac_attach_beep(pmac_t *chip)
return
0
;
}
#endif
/* beep stuff */
static
void
snd_pmac_dbdma_reset
(
pmac_t
*
chip
)
{
out_le32
(
&
chip
->
playback
.
dma
->
control
,
(
RUN
|
PAUSE
|
FLUSH
|
WAKE
|
DEAD
)
<<
16
);
...
...
sound/ppc/powermac.c
View file @
f1e706d0
...
...
@@ -129,8 +129,10 @@ static int __init snd_pmac_probe(void)
goto
__error
;
chip
->
initialized
=
1
;
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
if
(
enable_beep
)
snd_pmac_attach_beep
(
chip
);
#endif
if
((
err
=
snd_card_register
(
card
))
<
0
)
goto
__error
;
...
...
sound/ppc/tumbler.c
View file @
f1e706d0
...
...
@@ -26,6 +26,7 @@
#include <linux/i2c-dev.h>
#include <linux/kmod.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <sound/core.h>
#include <asm/io.h>
#include <asm/irq.h>
...
...
sound/usb/usbaudio.c
View file @
f1e706d0
...
...
@@ -2216,12 +2216,12 @@ static int create_composite_quirk(snd_usb_audio_t *chip,
struct
usb_interface
*
iface
,
const
snd_usb_audio_quirk_t
*
quirk
)
{
struct
usb_
config_descriptor
*
config
=
chip
->
dev
->
actconfig
;
struct
usb_
host_config
*
config
=
chip
->
dev
->
actconfig
;
int
probed_ifnum
=
get_iface_desc
(
iface
->
altsetting
)
->
bInterfaceNumber
;
int
err
;
for
(
quirk
=
quirk
->
data
;
quirk
->
ifnum
>=
0
;
++
quirk
)
{
if
(
quirk
->
ifnum
>=
config
->
bNumInterfaces
)
if
(
quirk
->
ifnum
>=
get_cfg_desc
(
config
)
->
bNumInterfaces
)
continue
;
iface
=
&
config
->
interface
[
quirk
->
ifnum
];
if
(
quirk
->
ifnum
!=
probed_ifnum
&&
...
...
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