diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-04-11 18:01:50 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-04-11 18:01:50 +0000 |
commit | fad8c2bd7ca3605fdae3548b8a932aa309871931 (patch) | |
tree | 26cbef49876963512753dd271f9fafcff77baf26 /payloads/libpayload/curses | |
parent | 54315533cc8f162d5251458c6b9fa9f38c3f47f0 (diff) | |
download | coreboot-fad8c2bd7ca3605fdae3548b8a932aa309871931.tar.xz |
Various small consistency fixes (trivial):
- Use _FOO_H include guard format everywhere.
- Add missing speaker.c prototypes to libpayload.h.
- Consistently use short form u8/u16/u32 instead of uint8_t et. al.
- kcofig: Use 'depends on' instead of 'depends', which seems deprecated.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3234 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/curses')
-rw-r--r-- | payloads/libpayload/curses/local.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/payloads/libpayload/curses/local.h b/payloads/libpayload/curses/local.h index 7e1fb64b93..0a861ceed8 100644 --- a/payloads/libpayload/curses/local.h +++ b/payloads/libpayload/curses/local.h @@ -27,8 +27,8 @@ * SUCH DAMAGE. */ -#ifndef TINYCURSES_H -#define TINYCURSES_H +#ifndef _CURSES_LOCAL_H +#define _CURSES_LOCAL_H /* For curses.priv.h: */ #define USE_RCS_IDS 0 @@ -91,4 +91,4 @@ void speaker_enable(u16 freq); void speaker_disable(void); void speaker_tone(u16 freq, unsigned int duration); -#endif /* TINYCURSES_H */ +#endif |