repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
BPicture: Fix archive constructor.
[haiku.git]
/
src
/
add-ons
/
kernel
/
drivers
/
audio
/
ac97
/
es1370
/
config.h
blob
9856277f2744df2ea915312ad3fd59f89a007be8
1
/*
2
* ES1370 Haiku Driver for ES1370 audio
3
*
4
* Copyright 2002-2007, Haiku, Inc.
5
* Distributed under the terms of the MIT License.
6
*
7
* Authors:
8
* Marcus Overhagen, marcus@overhagen.de
9
* Jerome Duval, jerome.duval@free.fr
10
*/
11
#ifndef _CONFIG_H_
12
#define _CONFIG_H_
13
14
#define NUM_CARDS 3
15
#define DEVNAME 32
16
17
typedef
struct
18
{
19
uint32 base
;
20
uint32 irq
;
21
uint32 type
;
22
}
device_config
;
23
24
#endif