blob: 52e4dfc6c87185b3f74ad16d83ac79bdda2884ac [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13#include <linux/kernel.h>
14#include <linux/clk.h>
15
16#include <mach/clk.h>
17
Rohit Vaswani2f3bb872011-07-13 14:22:04 -070018#include "clock.h"
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070019
20/*
21 * Clocks
22 */
23
24struct clk_lookup msm_clocks_fsm9xxx[] = {
25 CLK_DUMMY("adm_clk", ADM0_CLK, NULL, OFF),
26 CLK_DUMMY("uart_clk", UART1_CLK, "msm_serial.0", OFF),
27 CLK_DUMMY("ce_clk", CE_CLK, NULL, OFF),
28};
29
30unsigned msm_num_clocks_fsm9xxx = ARRAY_SIZE(msm_clocks_fsm9xxx);
31