s/#ifdef CONFIG_/#if ENABLE_/g

This commit is contained in:
Denis Vlasenko
2007-08-13 10:36:25 +00:00
parent 5f1b149d54
commit e324184c05
22 changed files with 60 additions and 56 deletions

View File

@@ -377,13 +377,13 @@ used in the code.
(in .h header file)
#ifdef CONFIG_FEATURE_FUNKY
static inline void maybe_do_funky_stuff (int bar, int baz)
#if ENABLE_FEATURE_FUNKY
static inline void maybe_do_funky_stuff(int bar, int baz)
{
/* lotsa code in here */
}
#else
static inline void maybe_do_funky_stuff (int bar, int baz) {}
static inline void maybe_do_funky_stuff(int bar, int baz) {}
#endif
(in the .c source file)