Cosmetic changes and coding style fixes by running 'indent', with some

manual fixups afterwards (trivial).

No functionality changes, compile-tested.

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@3174 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Uwe Hermann
2008-03-20 01:11:28 +00:00
parent 7249f79792
commit 3a406feb17
6 changed files with 142 additions and 172 deletions

View File

@@ -21,18 +21,18 @@
#define COREINFO_H_
#include <libpayload.h>
#include <curses.h>
struct coreinfo_module {
char name[15];
int (*init)(void);
int (*redraw)(WINDOW *);
int (*handle)(int);
int (*init) (void);
int (*redraw) (WINDOW *);
int (*handle) (int);
};
extern void docpuid(int, unsigned long *, unsigned long *, unsigned long *, unsigned long *);
extern void docpuid(int, unsigned long *, unsigned long *, unsigned long *,
unsigned long *);
void print_module_title(WINDOW *, const char *title);
void print_module_title(WINDOW *win, const char *title);
#endif