]>
Commit | Line | Data |
---|---|---|
cb9c377f PB |
1 | #ifndef HW_AUDIODEV_H |
2 | #define HW_AUDIODEV_H 1 | |
3 | ||
87ecb68b | 4 | /* es1370.c */ |
22d83b14 | 5 | int es1370_init(PCIBus *bus); |
87ecb68b PB |
6 | |
7 | /* sb16.c */ | |
4a0f031d | 8 | int SB16_init(ISABus *bus); |
87ecb68b PB |
9 | |
10 | /* adlib.c */ | |
4a0f031d | 11 | int Adlib_init(ISABus *bus); |
87ecb68b PB |
12 | |
13 | /* gus.c */ | |
4a0f031d | 14 | int GUS_init(ISABus *bus); |
87ecb68b | 15 | |
e5c9a13e | 16 | /* ac97.c */ |
1ce9c192 | 17 | int ac97_init(PCIBus *bus); |
cc53d26d | 18 | |
19 | /* cs4231a.c */ | |
4a0f031d | 20 | int cs4231a_init(ISABus *bus); |
d61a4ce8 GH |
21 | |
22 | /* intel-hda.c + hda-audio.c */ | |
23 | int intel_hda_and_codec_init(PCIBus *bus); | |
cb9c377f PB |
24 | |
25 | #endif |