/arch/arm/oprofile/init.c

https://bitbucket.org/evzijst/gittest · C · 31 lines · 18 code · 5 blank · 8 comment · 0 complexity · cfe946649e3002bcb0d2e90f70d9077c MD5 · raw file

  1. /**
  2. * @file init.c
  3. *
  4. * @remark Copyright 2004 Oprofile Authors
  5. * @remark Read the file COPYING
  6. *
  7. * @author Zwane Mwaikambo
  8. */
  9. #include <linux/oprofile.h>
  10. #include <linux/init.h>
  11. #include <linux/errno.h>
  12. #include "op_arm_model.h"
  13. int __init oprofile_arch_init(struct oprofile_operations *ops)
  14. {
  15. int ret = -ENODEV;
  16. #ifdef CONFIG_CPU_XSCALE
  17. ret = pmu_init(ops, &op_xscale_spec);
  18. #endif
  19. return ret;
  20. }
  21. void oprofile_arch_exit(void)
  22. {
  23. #ifdef CONFIG_CPU_XSCALE
  24. pmu_exit();
  25. #endif
  26. }