summaryrefslogtreecommitdiff
path: root/util/superiotool/superiotool.h
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-10-31 22:22:11 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-10-31 22:22:11 +0000
commit246be7dd6dc732f1bf98f2ad63e2b7d9050aeafe (patch)
treeb566e25b9b89b70a727228a19cea90e83d477e32 /util/superiotool/superiotool.h
parente7537f134d8484f3b8560e00a838bdacce4ea884 (diff)
downloadcoreboot-246be7dd6dc732f1bf98f2ad63e2b7d9050aeafe.tar.xz
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/superiotool.h')
-rw-r--r--util/superiotool/superiotool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/superiotool/superiotool.h b/util/superiotool/superiotool.h
index 38f9cdfc1a..97daed96f4 100644
--- a/util/superiotool/superiotool.h
+++ b/util/superiotool/superiotool.h
@@ -100,7 +100,7 @@ void probe_idregs_smsc(uint16_t port);
void probe_idregs_winbond(uint16_t port);
/** Table of which config ports to probe for each Super I/O family. */
-const static struct {
+static const struct {
void (*probe_idregs) (uint16_t port);
int ports[MAXNUMPORTS]; /* Signed, as we need EOT. */
} superio_ports_table[] = {