mt_clkmgr_common.c 194 B

123456789101112131415
  1. #include <linux/module.h>
  2. int enable_clock(int id, char *name)
  3. {
  4. return 0;
  5. }
  6. EXPORT_SYMBOL(enable_clock);
  7. int disable_clock(int id, char *name)
  8. {
  9. return 0;
  10. }
  11. EXPORT_SYMBOL(disable_clock);