/* * Copyright (C) 2011 Teresa Gámez * * The code contained herein is licensed under the GNU General Public * License. You may obtain a copy of the GNU General Public License * Version 2 or later at the following locations: * * http://www.opensource.org/licenses/gpl-license.html * http://www.gnu.org/copyleft/gpl.html */ #include #include #include static struct cpu_op mx27_cpu_op[] = { { .cpu_rate = 133000000, }, { .cpu_rate = 399000000, }, }; struct cpu_op *mx27_get_cpu_op(int *op) { *op = ARRAY_SIZE(mx27_cpu_op); return mx27_cpu_op; }