OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [drivers/] [sound/] [lowlevel/] [init.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1626 jcastillo
/*
2
 * lowlevel/init.c - Calls initialization code for configured drivers.
3
 */
4
 
5
#include <linux/config.h>
6
 
7
#ifdef CONFIG_LOWLEVEL_SOUND
8
extern int attach_aci(void);
9
extern void unload_aci(void);
10
 
11
void
12
sound_init_lowlevel_drivers(void)
13
{
14
#ifdef CONFIG_ACI_MIXER
15
   attach_aci();
16
#endif
17
}
18
 
19
void
20
sound_unload_lowlevel_drivers(void)
21
{
22
#ifdef CONFIG_ACI_MIXER
23
   unload_aci();
24
#endif
25
}
26
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.