s3c2442.c 840 B

12345678910111213141516171819202122232425262728293031323334
  1. /* linux/arch/arm/mach-s3c2442/s3c2442.c
  2. *
  3. * Copyright (c) 2006 Simtec Electronics
  4. * Ben Dooks <ben@simtec.co.uk>
  5. *
  6. * Samsung S3C2442 Mobile CPU support
  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/kernel.h>
  13. #include <linux/types.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/list.h>
  16. #include <linux/timer.h>
  17. #include <linux/init.h>
  18. #include <linux/serial_core.h>
  19. #include <linux/sysdev.h>
  20. #include <asm/plat-s3c24xx/s3c2442.h>
  21. #include <asm/plat-s3c24xx/cpu.h>
  22. static struct sys_device s3c2442_sysdev = {
  23. .cls = &s3c2442_sysclass,
  24. };
  25. int __init s3c2442_init(void)
  26. {
  27. printk("S3C2442: Initialising architecture\n");
  28. return sysdev_register(&s3c2442_sysdev);
  29. }