#include <types.h>
#include <kern/clock.h>
-#include <i386/rtclock_entries.h>
-
/*
* Clock device subsystem configuration. The clock_list[]
* table contains the clock structures for all clocks in
struct clock clock_list[] = {
/* SYSTEM_CLOCK */
- { &sysclk_ops, 0, 0, 0 },
+ { &sysclk_ops, 0, 0, {0} },
/* CALENDAR_CLOCK */
- { &calend_ops, 0, 0, 0 },
+ { &calend_ops, 0, 0, {0} }
};
int clock_count = sizeof(clock_list) / sizeof(clock_list[0]);