clock44xx.c 559 B

123456789101112131415161718192021222324
  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. const struct clkops clkops_noncore_dpll_ops = {
  15. .enable = &omap3_noncore_dpll_enable,
  16. .disable = &omap3_noncore_dpll_disable,
  17. };
  18. void omap2_clk_prepare_for_reboot(void)
  19. {
  20. return;
  21. }