irq-r7780rp.c 512 B

12345678910111213141516171819202122
  1. /*
  2. * Renesas Solutions Highlander R7780RP-1 Support.
  3. *
  4. * Copyright (C) 2002 Atom Create Engineering Co., Ltd.
  5. * Copyright (C) 2006 Paul Mundt
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file "COPYING" in the main directory of this archive
  9. * for more details.
  10. */
  11. #include <linux/init.h>
  12. #include <asm/r7780rp.h>
  13. unsigned char * __init highlander_init_irq_r7780rp(void)
  14. {
  15. int i;
  16. for (i = 0; i < 15; i++)
  17. make_r7780rp_irq(i);
  18. return NULL;
  19. }