Staging: Panel: panel: Fixed checkpatch line length warnings
[linux/fpc-iii.git] / arch / hexagon / include / asm / irqflags.h
blobe5fd9492d60fbcdc65259e1f6d38d62dbeea6ac6
1 /*
2 * IRQ support for the Hexagon architecture
4 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 and
8 * only version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA.
21 #ifndef _ASM_IRQFLAGS_H
22 #define _ASM_IRQFLAGS_H
24 #include <asm/hexagon_vm.h>
25 #include <linux/types.h>
27 static inline unsigned long arch_local_save_flags(void)
29 return __vmgetie();
32 static inline unsigned long arch_local_irq_save(void)
34 return __vmsetie(VM_INT_DISABLE);
37 static inline bool arch_irqs_disabled_flags(unsigned long flags)
39 return !flags;
42 static inline bool arch_irqs_disabled(void)
44 return !__vmgetie();
47 static inline void arch_local_irq_enable(void)
49 __vmsetie(VM_INT_ENABLE);
52 static inline void arch_local_irq_disable(void)
54 __vmsetie(VM_INT_DISABLE);
57 static inline void arch_local_irq_restore(unsigned long flags)
59 __vmsetie(flags);
62 #endif