Autodoc formatting fixes.
[AROS.git] / arch / all-pc / hpet / freehpetunit.c
blobd5f8adee52f658102f6211fdfffee817980ec17e
1 #include "hpet_intern.h"
3 /*****************************************************************************
5 NAME */
6 #include <proto/hpet.h>
8 AROS_LH1(void, FreeHPETUnit,
10 /* SYNOPSIS */
11 AROS_LHA(ULONG, unit, D0),
13 /* LOCATION */
14 struct HPETBase *, base, 3, Hpet)
16 /* FUNCTION
17 Free the specified HPET unit.
19 INPUTS
20 unit - a number of previously allocated HPET unit.
22 RESULT
23 None.
25 NOTES
27 EXAMPLE
29 BUGS
31 SEE ALSO
33 INTERNALS
35 ******************************************************************************/
37 AROS_LIBFUNC_INIT
39 /* Very simple. Even don't need a semaphore. */
40 base->units[unit].Owner = NULL;
42 AROS_LIBFUNC_EXIT