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
3c195d84
Commit
3c195d84
authored
Apr 14, 2002
by
Russell King
Committed by
Linus Torvalds
Apr 14, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] 2.5.7 ALSA include fixes
Include fixes to allow ALSA to compile.
parent
49c7ca7c
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
0 deletions
+10
-0
include/sound/asound.h
include/sound/asound.h
+1
-0
include/sound/core.h
include/sound/core.h
+1
-0
sound/core/device.c
sound/core/device.c
+1
-0
sound/core/memory.c
sound/core/memory.c
+1
-0
sound/core/seq/seq_dummy.c
sound/core/seq/seq_dummy.c
+1
-0
sound/core/seq/seq_midi.c
sound/core/seq/seq_midi.c
+2
-0
sound/core/seq/seq_midi_event.c
sound/core/seq/seq_midi_event.c
+1
-0
sound/drivers/mpu401/mpu401_uart.c
sound/drivers/mpu401/mpu401_uart.c
+2
-0
No files found.
include/sound/asound.h
View file @
3c195d84
...
...
@@ -30,6 +30,7 @@
#ifdef __KERNEL__
#include <linux/types.h>
#include <linux/time.h>
#include <asm/byteorder.h>
#if __LITTLE_ENDIAN == 1234
...
...
include/sound/core.h
View file @
3c195d84
...
...
@@ -252,6 +252,7 @@ void *snd_malloc_isa_pages_fallback(unsigned long size, dma_addr_t *dma_addr, un
#define snd_free_isa_pages(size, ptr, dma_addr) snd_free_pages(ptr, size)
#endif
#ifdef CONFIG_PCI
struct
pci_dev
;
void
*
snd_malloc_pci_pages
(
struct
pci_dev
*
pci
,
unsigned
long
size
,
dma_addr_t
*
dma_addr
);
void
*
snd_malloc_pci_pages_fallback
(
struct
pci_dev
*
pci
,
unsigned
long
size
,
dma_addr_t
*
dma_addr
,
unsigned
long
*
res_size
);
void
snd_free_pci_pages
(
struct
pci_dev
*
pci
,
unsigned
long
size
,
void
*
ptr
,
dma_addr_t
dma_addr
);
...
...
sound/core/device.c
View file @
3c195d84
...
...
@@ -24,6 +24,7 @@
#include <linux/slab.h>
#include <linux/time.h>
#include <sound/core.h>
#include <linux/errno.h>
int
snd_device_new
(
snd_card_t
*
card
,
snd_device_type_t
type
,
void
*
device_data
,
snd_device_ops_t
*
ops
)
...
...
sound/core/memory.c
View file @
3c195d84
...
...
@@ -26,6 +26,7 @@
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/time.h>
#include <linux/pci.h>
#include <sound/core.h>
#include <sound/info.h>
...
...
sound/core/seq/seq_dummy.c
View file @
3c195d84
...
...
@@ -20,6 +20,7 @@
#include <sound/driver.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <sound/core.h>
#include "seq_clientmgr.h"
#include <sound/initval.h>
...
...
sound/core/seq/seq_midi.c
View file @
3c195d84
...
...
@@ -29,6 +29,8 @@ Possible options for midisynth module:
#include <sound/driver.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <asm/semaphore.h>
#include <sound/core.h>
#include <sound/rawmidi.h>
#include <sound/seq_kernel.h>
...
...
sound/core/seq/seq_midi_event.c
View file @
3c195d84
...
...
@@ -21,6 +21,7 @@
#include <sound/driver.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <sound/core.h>
#include <sound/seq_kernel.h>
#include <sound/seq_midi_event.h>
...
...
sound/drivers/mpu401/mpu401_uart.c
View file @
3c195d84
...
...
@@ -29,6 +29,8 @@
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/ioport.h>
#include <linux/sched.h>
#include <linux/errno.h>
#include <sound/core.h>
#include <sound/mpu401.h>
...
...
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