commit | e8958dbf0da377e11f385a9888da3f72e827ab26 | [log] [tgz] |
---|---|---|
author | Sven Eckelmann <sven@narfation.org> | Sat Jun 04 11:26:00 2011 +0200 |
committer | Sven Eckelmann <sven@narfation.org> | Thu Jun 09 20:40:38 2011 +0200 |
tree | bf2c84c423ebdfba4b88afad1fcb7d9a96070902 | |
parent | 3d222bbaa7329e8ef45129e1bd6801000d7e05e4 [diff] |
batman-adv: Use enums for related constants CodingStyle "Chapter 12: Macros, Enums and RTL" recommends to use enums for several related constants. Internal states can be used without defining the actual value, but all values which are visible to the outside must be defined as before. Normal values are assigned as usual and flags are defined by shifts of a bit. Signed-off-by: Sven Eckelmann <sven@narfation.org>