diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-31 22:22:11 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-31 22:22:11 +0000 |
commit | 246be7dd6dc732f1bf98f2ad63e2b7d9050aeafe (patch) | |
tree | b566e25b9b89b70a727228a19cea90e83d477e32 /util/superiotool/winbond.c | |
parent | e7537f134d8484f3b8560e00a838bdacce4ea884 (diff) |
Use the preferred order of 'static const' instead of 'const static'.
This is the common style in both Linux as well as in LinuxBIOS.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Jordan Crouse <jordan.crouse@amd.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2922 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/superiotool/winbond.c')
-rw-r--r-- | util/superiotool/winbond.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/superiotool/winbond.c b/util/superiotool/winbond.c index d7a8b9a18f..671a825684 100644 --- a/util/superiotool/winbond.c +++ b/util/superiotool/winbond.c @@ -36,7 +36,7 @@ * * Some other Super I/Os only use bits 3..0 of 0x09 as ID. */ -const static struct superio_registers reg_table[] = { +static const struct superio_registers reg_table[] = { /* ID and rev[3..0] */ {0x527, "W83977CTF", { /* TODO: Not yet in sensors-detect */ {EOT}}}, |