9
0
Fork 0

reset_source: provide static inline function if disabled

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2012-10-07 23:59:03 +02:00
parent 797bc5d911
commit 90e9f773c1
1 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,12 @@ enum reset_src_type {
RESET_JTAG, /* JTAG reset */
};
#ifdef CONFIG_RESET_SOURCE
void set_reset_source(enum reset_src_type);
#else
static inline void set_reset_source(enum reset_src_type unused)
{
}
#endif
#endif /* __INCLUDE_RESET_SOURCE_H */