drop some unused files and fix warnings on i945 based systems.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5267 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
c02b4fc9db
commit
53b0ea4bf2
40 changed files with 76 additions and 311 deletions
|
|
@ -57,14 +57,14 @@ static int cmos_chksum_valid(void)
|
|||
}
|
||||
|
||||
|
||||
static int last_boot_normal(void)
|
||||
static inline int last_boot_normal(void)
|
||||
{
|
||||
unsigned char byte;
|
||||
byte = cmos_read(RTC_BOOT_BYTE);
|
||||
return (byte & (1 << 1));
|
||||
}
|
||||
|
||||
static int do_normal_boot(void)
|
||||
static inline int do_normal_boot(void)
|
||||
{
|
||||
unsigned char byte;
|
||||
|
||||
|
|
@ -107,7 +107,7 @@ static int do_normal_boot(void)
|
|||
return (byte & (1<<1));
|
||||
}
|
||||
|
||||
static unsigned read_option(unsigned start, unsigned size, unsigned def)
|
||||
static inline unsigned read_option(unsigned start, unsigned size, unsigned def)
|
||||
{
|
||||
#if CONFIG_USE_OPTION_TABLE == 1
|
||||
unsigned byte;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue