diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-27 20:05:21 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-27 20:05:21 +0000 |
commit | 55e6ebaf6a90102bfb09e467d768cf861a340e5f (patch) | |
tree | 094e948563cf353d2a5ef9c1faa5351c7c8df85b /src/superio/smsc/smscsuperio/superio.c | |
parent | 9b80a8d4bc5b49c8921f57c3bf83f04c79817e46 (diff) | |
download | coreboot-55e6ebaf6a90102bfb09e467d768cf861a340e5f.tar.xz |
Move ARRAY_SIZE to stdlib.h to make it available to all code (trivial).
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@2901 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/smsc/smscsuperio/superio.c')
-rw-r--r-- | src/superio/smsc/smscsuperio/superio.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/superio/smsc/smscsuperio/superio.c b/src/superio/smsc/smscsuperio/superio.c index 0ae1818ceb..20e5cf662f 100644 --- a/src/superio/smsc/smscsuperio/superio.c +++ b/src/superio/smsc/smscsuperio/superio.c @@ -40,6 +40,7 @@ #include <console/console.h> #include <uart8250.h> #include <pc80/keyboard.h> +#include <stdlib.h> #include "chip.h" /* The following Super I/O chips are currently supported by this driver: */ @@ -66,9 +67,6 @@ static int first_time = 1; static uint8_t superio_id = 0; static uint8_t superio_rev = 0; -/* TODO: Move somewhere else, but where? */ -#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) - /** * A list of all possible logical devices which may be supported by at least * one of the Super I/O chips. These values are used as index into the |