summaryrefslogtreecommitdiff
path: root/cesar/hal/boot_params/boot_params.h
blob: 64e39616d35dd7800d0f261739c7579ce015cb1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef hal_boot_params_boot_params_h
#define hal_boot_params_boot_params_h
/* Cesar project {{{
 *
 * Copyright (C) 2011 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    hal/boot_params/boot_params.h
 * \brief   Public interface for users of boot parameters.
 * \ingroup hal_boot_params
 *
 */
#include "common/module.h"

#if MODULE_INCLUDED (hal_boot_params)

BEGIN_DECLS

/**
 * Process the boot parameters.
 */
void
boot_params_process (void);

END_DECLS

#else

#define boot_params_process() ((void) 0)

#endif /* MODULE_INCLUDED (hal_boot_params) */

#endif /* hal_boot_params_boot_params_h */