clock44xx.c 849 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * OMAP4-specific clock framework functions
  3. *
  4. * Copyright (C) 2009 Texas Instruments, Inc.
  5. *
  6. * Rajendra Nayak (rnayak@ti.com)
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/errno.h>
  13. #include "clock.h"
  14. struct clk_functions omap2_clk_functions = {
  15. .clk_enable = omap2_clk_enable,
  16. .clk_disable = omap2_clk_disable,
  17. .clk_round_rate = omap2_clk_round_rate,
  18. .clk_set_rate = omap2_clk_set_rate,
  19. .clk_set_parent = omap2_clk_set_parent,
  20. .clk_disable_unused = omap2_clk_disable_unused,
  21. };
  22. const struct clkops clkops_noncore_dpll_ops = {
  23. .enable = &omap3_noncore_dpll_enable,
  24. .disable = &omap3_noncore_dpll_disable,
  25. };
  26. void omap2_clk_prepare_for_reboot(void)
  27. {
  28. return;
  29. }