You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
235 B
10 lines
235 B
20 years ago
|
#include <linux/module.h>
|
||
|
#include <asm/ocp.h>
|
||
|
|
||
|
struct ocp_sys_info_data ocp_sys_info = {
|
||
|
.opb_bus_freq = 50000000, /* OPB Bus Frequency (Hz) */
|
||
|
.ebc_bus_freq = 33333333, /* EBC Bus Frequency (Hz) */
|
||
|
};
|
||
|
|
||
|
EXPORT_SYMBOL(ocp_sys_info);
|