diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-04-22 13:18:09 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-22 13:18:09 +0000 |
commit | 64d3baf9829baf9285c94cae0406ee0f428c04c0 (patch) | |
tree | b80df0a87ad9bfecd2e6b2913eb5ff80535aee04 /src/southbridge/via/vt8237r | |
parent | 4292685f5adbe45bb5b23f32c3b6aaed04187f48 (diff) |
zero warnings days...
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5477 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/via/vt8237r')
-rw-r--r-- | src/southbridge/via/vt8237r/vt8237r.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/southbridge/via/vt8237r/vt8237r.h b/src/southbridge/via/vt8237r/vt8237r.h index d6c50053a6..54a46f8a72 100644 --- a/src/southbridge/via/vt8237r/vt8237r.h +++ b/src/southbridge/via/vt8237r/vt8237r.h @@ -103,7 +103,18 @@ __attribute__ ((packed)) #endif ; -#ifndef __PRE_RAM__ +#ifdef __PRE_RAM__ +#ifndef __ROMCC__ +u8 smbus_read_byte(u8 dimm, u8 offset); +void enable_smbus(void); +void smbus_fixup(const struct mem_controller *ctrl); +// these are in vt8237_early_smbus.c - do they really belong there? +void vt8237_sb_enable_fid_vid(void); +void enable_rom_decode(void); +void vt8237_early_spi_init(void); +int vt8237_early_network_init(struct vt8237_network_rom *rom); +#endif +#else #include <device/device.h> void writeback(struct device *dev, u16 where, u8 what); void dump_south(device_t dev); |