zte's code,first commit
Change-Id: I9a04da59e459a9bc0d67f101f700d9d7dc8d681b
diff --git a/cp/ps/modem/psbase/inc/icu_irq.h b/cp/ps/modem/psbase/inc/icu_irq.h
new file mode 100644
index 0000000..88c03ec
--- /dev/null
+++ b/cp/ps/modem/psbase/inc/icu_irq.h
@@ -0,0 +1,37 @@
+/*******************************************************************************
+ * Copyright (C) 2007, ZTE Corporation.
+ *
+ * File Name: icu_irq.h
+ * File Mark:
+ * Description:
+ * Others:
+ * Version: v0.5
+ * Author: wangxia
+ * Date: 2008-1-5
+ * History 1:
+ * Date:
+ * Version:
+ * Author:
+ * Modification:
+ * History 2:
+ ********************************************************************************/
+
+#if !defined (_ICU_IRQ_H)
+#define _ICU_IRQ_H
+
+#ifndef _OS_WIN
+#include "cpu_intlock.h" /* intrruput enable/disable */
+/*
+#define ICU_Disable_IRQ() unsigned long msr;\
+ LOCK_SAVE(msr);*/
+
+#define ICU_Disable_IRQ() LOCK_SAVE(msr);
+
+#define ICU_Enable_IRQ() LOCK_RESTORE(msr);
+
+#else
+#define ICU_Disable_IRQ()
+#define ICU_Enable_IRQ()
+
+#endif
+#endif /* _ICU_IRQ_H*/