Get rid of a few more warnings.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5512 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Myles Watson 2010-04-30 17:11:03 +00:00
parent 636d924425
commit ad894c5449
13 changed files with 17 additions and 11 deletions

View File

@ -1,10 +1,10 @@
#include <stdint.h> #include <stdint.h>
#include <string.h>
#include <device/pci_def.h> #include <device/pci_def.h>
#include <arch/io.h> #include <arch/io.h>
#include <device/pnp_def.h> #include <device/pnp_def.h>
#include <arch/romcc_io.h> #include <arch/romcc_io.h>
#include <cpu/x86/lapic.h> #include <cpu/x86/lapic.h>
#include <stdlib.h>
#include "option_table.h" #include "option_table.h"
#include "pc80/mc146818rtc_early.c" #include "pc80/mc146818rtc_early.c"
#include "pc80/serial.c" #include "pc80/serial.c"

View File

@ -36,7 +36,7 @@
#define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1) #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
/* The ALIX1.C has no SMBus; the setup is hard-wired. */ /* The ALIX1.C has no SMBus; the setup is hard-wired. */
void cs5536_enable_smbus(void) static void cs5536_enable_smbus(void)
{ {
} }

View File

@ -10,4 +10,3 @@ obj-$(CONFIG_GENERATE_ACPI_TABLES) += sspr4.o
obj-$(CONFIG_GENERATE_ACPI_TABLES) += sspr5.o obj-$(CONFIG_GENERATE_ACPI_TABLES) += sspr5.o
obj-y += get_pci1234.o obj-y += get_pci1234.o

View File

@ -26,7 +26,7 @@
static inline void print_debug_addr(const char *str, void *val) static inline void print_debug_addr(const char *str, void *val)
{ {
#if CACHE_AS_RAM_ADDRESS_DEBUG == 1 #if defined(CACHE_AS_RAM_ADDRESS_DEBUG) && CACHE_AS_RAM_ADDRESS_DEBUG == 1
printk(BIOS_DEBUG, "------Address debug: %s%p------\n", str, val); printk(BIOS_DEBUG, "------Address debug: %s%p------\n", str, val);
#endif #endif
} }

View File

@ -55,6 +55,7 @@
* *
*/ */
#include "northbridge.h"
void get_pci1234(void) void get_pci1234(void)
{ {

View File

@ -21,5 +21,6 @@
#define NORTHBRIDGE_AMD_AMDFAM10_H #define NORTHBRIDGE_AMD_AMDFAM10_H
u32 amdfam10_scan_root_bus(device_t root, u32 max); u32 amdfam10_scan_root_bus(device_t root, u32 max);
void get_pci1234(void);
#endif /* NORTHBRIDGE_AMD_AMDFAM10_H */ #endif /* NORTHBRIDGE_AMD_AMDFAM10_H */

View File

@ -2511,9 +2511,8 @@ static void set_misc_timing(const struct mem_controller *ctrl, struct mem_info *
unsigned SlowAccessMode = 0; unsigned SlowAccessMode = 0;
#endif #endif
long dimm_mask = meminfo->dimm_mask & 0x0f;
#if CONFIG_DIMM_SUPPORT==0x0104 /* DDR2 and REG */ #if CONFIG_DIMM_SUPPORT==0x0104 /* DDR2 and REG */
long dimm_mask = meminfo->dimm_mask & 0x0f;
/* for REG DIMM */ /* for REG DIMM */
dword = 0x00111222; dword = 0x00111222;
dwordx = 0x002f0000; dwordx = 0x002f0000;
@ -2578,6 +2577,7 @@ static void set_misc_timing(const struct mem_controller *ctrl, struct mem_info *
#endif #endif
#if CONFIG_DIMM_SUPPORT==0x0004 /* DDR2 and unbuffered */ #if CONFIG_DIMM_SUPPORT==0x0004 /* DDR2 and unbuffered */
long dimm_mask = meminfo->dimm_mask & 0x0f;
/* for UNBUF DIMM */ /* for UNBUF DIMM */
dword = 0x00111222; dword = 0x00111222;
dwordx = 0x002f2f00; dwordx = 0x002f2f00;

View File

@ -528,7 +528,7 @@ static unsigned TrainRcvrEn(const struct mem_controller *ctrl, unsigned Pass, st
unsigned is_Width128 = sysinfo->meminfo[ctrl->node_id].is_Width128; unsigned is_Width128 = sysinfo->meminfo[ctrl->node_id].is_Width128;
#if K8_REV_F_SUPPORT_F0_F1_WORKAROUND == 1 #if K8_REV_F_SUPPORT_F0_F1_WORKAROUND == 1
unsigned cpu_f0_f1; unsigned cpu_f0_f1 = 0;
#endif #endif
if(Pass == DQS_FIRST_PASS) { if(Pass == DQS_FIRST_PASS) {

View File

@ -42,8 +42,6 @@ static void DQSTiming_D(struct MCTStatStruc *pMCTstat,
struct DCTStatStruc *pDCTstatA); struct DCTStatStruc *pDCTstatA);
static void LoadDQSSigTmgRegs_D(struct MCTStatStruc *pMCTstat, static void LoadDQSSigTmgRegs_D(struct MCTStatStruc *pMCTstat,
struct DCTStatStruc *pDCTstatA); struct DCTStatStruc *pDCTstatA);
static void ResetNBECCstat_D(struct MCTStatStruc *pMCTstat,
struct DCTStatStruc *pDCTstatA);
static void HTMemMapInit_D(struct MCTStatStruc *pMCTstat, static void HTMemMapInit_D(struct MCTStatStruc *pMCTstat,
struct DCTStatStruc *pDCTstatA); struct DCTStatStruc *pDCTstatA);
static void MCTMemClr_D(struct MCTStatStruc *pMCTstat, static void MCTMemClr_D(struct MCTStatStruc *pMCTstat,
@ -477,6 +475,8 @@ static void LoadDQSSigTmgRegs_D(struct MCTStatStruc *pMCTstat,
} }
#ifdef UNUSED_CODE #ifdef UNUSED_CODE
static void ResetNBECCstat_D(struct MCTStatStruc *pMCTstat,
struct DCTStatStruc *pDCTstatA);
static void ResetNBECCstat_D(struct MCTStatStruc *pMCTstat, static void ResetNBECCstat_D(struct MCTStatStruc *pMCTstat,
struct DCTStatStruc *pDCTstatA) struct DCTStatStruc *pDCTstatA)
{ {

View File

@ -944,7 +944,7 @@ static void sdram_enable(int controllers, const struct mem_controller *ctrl)
u32 drc; u32 drc;
u32 data32; u32 data32;
u32 mode_reg; u32 mode_reg;
u32 *iptr; u32 const *iptr;
u16 data16; u16 data16;
static const struct { static const struct {
u32 clkgr[4]; u32 clkgr[4];

View File

@ -126,6 +126,7 @@ static int via_vx800_int15_handler(struct eregs *regs)
return res; return res;
} }
#ifdef UNUSED_CODE
void write_protect_vgabios(void) void write_protect_vgabios(void)
{ {
device_t dev; device_t dev;
@ -141,6 +142,7 @@ void write_protect_vgabios(void)
//if(dev) //if(dev)
// pci_write_config8(dev, 0x61, 0xff); */ // pci_write_config8(dev, 0x61, 0xff); */
} }
#endif
extern u8 acpi_sleep_type; extern u8 acpi_sleep_type;
static void vga_init(device_t dev) static void vga_init(device_t dev)

View File

@ -14,6 +14,8 @@
#define SMBUS_TIMEOUT (100*1000*10) #define SMBUS_TIMEOUT (100*1000*10)
#include <delay.h>
static int smbus_wait_until_ready(unsigned smbus_io_base) static int smbus_wait_until_ready(unsigned smbus_io_base)
{ {
unsigned loops = SMBUS_TIMEOUT; unsigned loops = SMBUS_TIMEOUT;

View File

@ -19,9 +19,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
static int set_ht_link_buffer_counts_chain(uint8_t ht_c_num, unsigned vendorid, unsigned val);
#ifdef UNUSED_CODE #ifdef UNUSED_CODE
int set_ht_link_buffer_counts_chain(uint8_t ht_c_num, unsigned vendorid, unsigned val);
static int set_ht_link_mcp55(uint8_t ht_c_num) static int set_ht_link_mcp55(uint8_t ht_c_num)
{ {
unsigned vendorid = 0x10de; unsigned vendorid = 0x10de;