blob: 91c387ee033f2f63ff8eb9975ec02f555f85b9db (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
#include <ppc.h>
unsigned long get_timer_freq(void)
{
return 100000000 / 4;
}
|