diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-31 22:26:51 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-31 22:26:51 +0000 |
commit | a0181ea03605b1fafe2ec9882384b91655dfe1c2 (patch) | |
tree | ad7a1f0de52fd4154e219ebda33b5c791df5ef70 /src/superio/smsc | |
parent | 246be7dd6dc732f1bf98f2ad63e2b7d9050aeafe (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.
Self-ack as this is pretty trivial and a similar patch was already acked.
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@2923 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/smsc')
-rw-r--r-- | src/superio/smsc/smscsuperio/superio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/smsc/smscsuperio/superio.c b/src/superio/smsc/smscsuperio/superio.c index 20e5cf662f..5cdd79f443 100644 --- a/src/superio/smsc/smscsuperio/superio.c +++ b/src/superio/smsc/smscsuperio/superio.c @@ -110,7 +110,7 @@ enum { * Note: Do _not_ list chips with different name but same device ID twice! * The result would be that the init code would be executed twice! */ -const static struct logical_devices { +static const struct logical_devices { uint8_t superio_id; int devs[MAX_LOGICAL_DEVICES]; } logical_device_table[] = { |