diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-04-30 20:30:47 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-30 20:30:47 +0000 |
commit | 95bf86be342ea43a99fc7430480d527484d938f9 (patch) | |
tree | b7c85c9d5157601a686af88af055d9f69402f3e4 /src/superio/winbond/w83627hf/w83627hf.h | |
parent | 2eac9d496d05f023413fbcee05d466d01d5c113f (diff) | |
download | coreboot-95bf86be342ea43a99fc7430480d527484d938f9.tar.xz |
Remove some warnings. For code that is called from the mainboard romstage.c
files using prototypes is the way to go I think. It would make our life a lot
easier should we ever decide to move (some mainboards) over to not #include
all those .c files in romstage.c anymore.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5518 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/winbond/w83627hf/w83627hf.h')
-rw-r--r-- | src/superio/winbond/w83627hf/w83627hf.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/superio/winbond/w83627hf/w83627hf.h b/src/superio/winbond/w83627hf/w83627hf.h index 56ade8feee..fa74cbd6df 100644 --- a/src/superio/winbond/w83627hf/w83627hf.h +++ b/src/superio/winbond/w83627hf/w83627hf.h @@ -109,3 +109,9 @@ #define W83627HF_HAP1 0x14 #define W83627HF_XSCNF 0x15 #define W83627HF_XWBCNF 0x16 + +#if defined(__PRE_RAM__) && !defined(__ROMCC__) +void w83627hf_disable_dev(device_t dev); +void w83627hf_enable_dev(device_t dev, unsigned iobase); +#endif + |