clock.c 881 B

12345678910111213141516171819202122232425262728
  1. /* arch/arm/mach-msm/clock.c
  2. *
  3. * Copyright (C) 2007 Google, Inc.
  4. * Copyright (c) 2007-2012, The Linux Foundation. All rights reserved.
  5. *
  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. #include <linux/clk-provider.h>
  17. #include <linux/module.h>
  18. #include "clock.h"
  19. int clk_reset(struct clk *clk, enum clk_reset_action action)
  20. {
  21. struct clk_hw *hw = __clk_get_hw(clk);
  22. struct msm_clk *m = to_msm_clk(hw);
  23. return m->reset(hw, action);
  24. }
  25. EXPORT_SYMBOL(clk_reset);