fix minor warnings in RTC code when HAVE_OPTION_TABLE is disabled.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5246 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
5c32d242e4
commit
2549d52c04
|
@ -185,6 +185,7 @@ static struct lb_mainboard *lb_mainboard(struct lb_header *header)
|
|||
return mainboard;
|
||||
}
|
||||
|
||||
#if (CONFIG_HAVE_OPTION_TABLE == 1)
|
||||
static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
|
||||
{
|
||||
struct lb_record *rec;
|
||||
|
@ -202,6 +203,7 @@ static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
|
|||
|
||||
return cmos_checksum;
|
||||
}
|
||||
#endif
|
||||
|
||||
static void lb_strings(struct lb_header *header)
|
||||
{
|
||||
|
|
|
@ -95,6 +95,7 @@ static inline void cmos_write(unsigned char val, unsigned char addr)
|
|||
outb(val, RTC_BASE_PORT + offs + 1);
|
||||
}
|
||||
|
||||
#if CONFIG_HAVE_OPTION_TABLE
|
||||
static int rtc_checksum_valid(int range_start, int range_end, int cks_loc)
|
||||
{
|
||||
int i;
|
||||
|
@ -120,6 +121,7 @@ static void rtc_set_checksum(int range_start, int range_end, int cks_loc)
|
|||
cmos_write(((sum >> 8) & 0x0ff), cks_loc);
|
||||
cmos_write(((sum >> 0) & 0x0ff), cks_loc+1);
|
||||
}
|
||||
#endif
|
||||
|
||||
#if CONFIG_ARCH_X86
|
||||
#define RTC_CONTROL_DEFAULT (RTC_24H)
|
||||
|
|
Loading…
Reference in New Issue