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
17typedef struct
18{
19	uint32	base;
20	uint32	irq;
21	uint32	type;
22} device_config;
23
24#endif
25