manage.c (10205618052908770451acd33eaeaa7685e97ed2) | manage.c (ce09ccc50208c04a1b03abfd530b5d6314258fd0) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar 4 * Copyright (C) 2005-2006 Thomas Gleixner 5 * 6 * This file contains driver APIs to the irq subsystem. 7 */ 8 --- 2845 unchanged lines hidden (view full) --- 2854 2855 rcu_read_lock(); 2856 desc = irq_to_desc(irq); 2857 if (desc) 2858 res = !!(desc->status_use_accessors & bitmask); 2859 rcu_read_unlock(); 2860 return res; 2861} | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar 4 * Copyright (C) 2005-2006 Thomas Gleixner 5 * 6 * This file contains driver APIs to the irq subsystem. 7 */ 8 --- 2845 unchanged lines hidden (view full) --- 2854 2855 rcu_read_lock(); 2856 desc = irq_to_desc(irq); 2857 if (desc) 2858 res = !!(desc->status_use_accessors & bitmask); 2859 rcu_read_unlock(); 2860 return res; 2861} |
2862EXPORT_SYMBOL_GPL(irq_check_status_bit); |
|