xref: /haiku/src/add-ons/kernel/drivers/audio/ice1712/util.h (revision 85892ec52f476b254d75e2bb2e6560e72faa567c)
1 /*
2  * Copyright 2004-2015 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Jérôme Duval, jerome.duval@free.fr
7  *		Marcus Overhagen, marcus@overhagen.de
8  *		Jérôme Lévêque, leveque.jerome@gmail.com
9  */
10 
11 
12 #ifndef _UTIL_H_
13 #define _UTIL_H_
14 
15 area_id alloc_mem(physical_entry *phy, addr_t *log, size_t size,
16 	const char *name);
17 cpu_status lock(void);
18 void unlock(cpu_status status);
19 
20 #endif
21