diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-03-17 13:43:48 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-03-17 13:43:48 +0000 |
commit | 969a9f69e8b2c33068151fd9adaa20356a7bcf66 (patch) | |
tree | 552680ac968a9e0d29cdaaf7e8f0cfda9c8fec0a /util/superiotool/ite.c | |
parent | a2ccf9fe4ef3f2736a336f861ffc37597829fcbc (diff) | |
download | coreboot-969a9f69e8b2c33068151fd9adaa20356a7bcf66.tar.xz |
Various smaller fixes in superiotool:
- Also dump the extra registers (e.g. EC regs) in --list-supported.
- Small fix in the code to allow for building with -pedantic (yes,
the fix is a bit silly, but it's simple and allows us to use the
-pedantic flag to keep the code even cleaner and nicer).
- Install the binary in /usr/sbin, as it's meant to be run as root.
- Small typo in README.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3163 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/superiotool/ite.c')
-rw-r--r-- | util/superiotool/ite.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/superiotool/ite.c b/util/superiotool/ite.c index 784c4efcda..44ec64c8a1 100644 --- a/util/superiotool/ite.c +++ b/util/superiotool/ite.c @@ -428,4 +428,5 @@ void probe_idregs_ite(uint16_t port) void print_ite_chips(void) { print_vendor_chips("ITE", reg_table); + print_vendor_chips("ITE EC", ec_table); } |