blob: 35ea02b52483771366b89ad5e01c4e98bbde17e5 [file] [log] [blame]
Brian Swetland600f7cf2008-09-09 11:04:14 -07001/* arch/arm/mach-msm/clock.c
2 *
3 * Copyright (C) 2007 Google, Inc.
Stephen Boyd8cc7f532013-06-17 10:43:19 -07004 * Copyright (c) 2007-2012, The Linux Foundation. All rights reserved.
Brian Swetland600f7cf2008-09-09 11:04:14 -07005 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
Stephen Boyd8cc7f532013-06-17 10:43:19 -070017#include <linux/clk-provider.h>
Stephen Boydbd323442011-02-23 09:37:42 -080018#include <linux/module.h>
Brian Swetland600f7cf2008-09-09 11:04:14 -070019
20#include "clock.h"
Brian Swetland600f7cf2008-09-09 11:04:14 -070021
Daniel Walker5e96da52010-05-12 13:43:28 -070022int clk_reset(struct clk *clk, enum clk_reset_action action)
23{
Stephen Boyd8cc7f532013-06-17 10:43:19 -070024 struct clk_hw *hw = __clk_get_hw(clk);
25 struct msm_clk *m = to_msm_clk(hw);
26 return m->reset(hw, action);
Daniel Walker5e96da52010-05-12 13:43:28 -070027}
28EXPORT_SYMBOL(clk_reset);