cpufreq.c 414 B

1234567891011121314151617
  1. /*
  2. * CPUFreq support code for SH-Mobile ARM
  3. *
  4. * Copyright (C) 2014 Gaku Inami
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #include <linux/platform_device.h>
  11. int __init shmobile_cpufreq_init(void)
  12. {
  13. platform_device_register_simple("cpufreq-dt", -1, NULL, 0);
  14. return 0;
  15. }