Remove some warnings.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4686 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Myles Watson
2009-09-29 14:56:15 +00:00
parent 5e54871375
commit 6e2357676f
16 changed files with 42 additions and 40 deletions

View File

@@ -4,7 +4,7 @@
*/
#if CONFIG_CBFS == 1
void cbfs_and_run_core(char*, unsigned ebp);
void cbfs_and_run_core(const char*, unsigned ebp);
static void copy_and_run(void)
{

View File

@@ -27,10 +27,10 @@ static void inline __attribute__((always_inline)) memcopy(void *dest, const voi
static void vErrata343(void)
{
#ifdef BU_CFG2_MSR
msr_t msr;
unsigned int uiMask = 0xFFFFFFF7;
#ifdef BU_CFG2_MSR
msr = rdmsr(BU_CFG2_MSR);
msr.hi &= uiMask; // set bit 35 to 0
wrmsr(BU_CFG2_MSR, msr);

View File

@@ -347,7 +347,8 @@ static unsigned init_cpus(unsigned cpu_init_detectedx)
lapic_write(LAPIC_MSG_REG, (apicid<<24) | 0x44); // bsp can not check it before stop_this_cpu
set_init_ram_access();
#if CONFIG_MEM_TRAIN_SEQ == 1
train_ram_on_node(id.nodeid, id.coreid, sysinfo, STOP_CAR_AND_CPU);
train_ram_on_node(id.nodeid, id.coreid, sysinfo,
(unsigned) STOP_CAR_AND_CPU);
#endif
STOP_CAR_AND_CPU();

View File

@@ -143,7 +143,7 @@ static inline unsigned int cpuid_ecx(unsigned int op)
return ecx;
}
static inline void strcpy(char *dst, char *src)
static inline void strcpy(char *dst, const char *src)
{
while (*src) *dst++ = *src++;
}
@@ -151,7 +151,9 @@ static inline void strcpy(char *dst, char *src)
int init_processor_name(void)
{
#if CONFIG_K8_REV_F_SUPPORT == 0
u32 EightBitBrandId;
#endif
u32 BrandId;
u32 BrandTableIndex;
u32 NN;
@@ -159,7 +161,7 @@ int init_processor_name(void)
msr_t progmsr;
int i;
char *processor_name_string=NULL;
const char *processor_name_string=NULL;
char program_string[48];
unsigned int *program_values = (unsigned int *)program_string;