xref: /haiku/src/add-ons/kernel/drivers/audio/ac97/sis7018/Driver.h (revision ed24eb5ff12640d052171c6a7feba37fab8a75d1)
1 /*
2  *	SiS 7018, Trident 4D Wave DX/NX, Acer Lab M5451 Sound Driver.
3  *	Copyright (c) 2002, 2008-2011 S.Zharski <imker@gmx.li>
4  *	Distributed under the terms of the MIT license.
5  *
6  */
7 #ifndef _SiS7018_DRIVER_H_
8 #define _SiS7018_DRIVER_H_
9 
10 
11 #include <Drivers.h>
12 #include <PCI.h>
13 
14 
15 #define DRIVER_NAME	"sis7018"
16 #define MAX_DEVICES	3
17 
18 
19 const char* const kVersion = "2.0.2";
20 
21 extern pci_module_info *gPCI;
22 
23 extern "C" {
24 
25 status_t		init_hardware();
26 status_t		init_driver();
27 void			uninit_driver();
28 const char**	publish_devices();
29 device_hooks*	find_device(const char* name);
30 
31 }
32 
33 
34 #endif // _SiS7018_DRIVER_H_
35 
36