Home | History | Annotate | Download | only in cpu
      1 // SPDX-License-Identifier: GPL-2.0+
      2 /*
      3  * (C) Copyright 2003
      4  * Wolfgang Denk, DENX Software Engineering, <wd (at) denx.de>
      5  */
      6 
      7 #include <common.h>
      8 
      9 int interrupt_init(void)
     10 {
     11 	return 0;
     12 }
     13 
     14 void enable_interrupts(void)
     15 {
     16 }
     17 
     18 int disable_interrupts(void)
     19 {
     20 	return 0;
     21 }
     22