clkdev.h 769 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * arch/arm/mach-tegra/include/mach/clkdev.h
  3. *
  4. * Copyright (C) 2010 Google, Inc.
  5. *
  6. * Author:
  7. * Colin Cross <ccross@google.com>
  8. *
  9. * This software is licensed under the terms of the GNU General Public
  10. * License version 2, as published by the Free Software Foundation, and
  11. * may be copied, distributed, and modified under those terms.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. */
  19. #ifndef __MACH_CLKDEV_H
  20. #define __MACH_CLKDEV_H
  21. static inline int __clk_get(struct clk *clk)
  22. {
  23. return 1;
  24. }
  25. static inline void __clk_put(struct clk *clk)
  26. {
  27. }
  28. #endif