mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
10 lines
235 B
C
10 lines
235 B
C
![]() |
#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);
|