setup CI/CD for kernel development - added CodeQL for code scanning - every pr is built as an image and is available for 30days on https://oklinux.dev - tagged and released on github for now Signed-off-by: sevki <s@sevki.io>
10 lines
246 B
C
10 lines
246 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#undef IRQ_DISABLE
|
|
#undef IRQ_ENABLE
|
|
#undef IRQ_ENTER
|
|
#undef IRQ_EXIT
|
|
|
|
#define IRQ_DISABLE SOFTIRQ_DISABLE
|
|
#define IRQ_ENABLE SOFTIRQ_ENABLE
|
|
#define IRQ_ENTER SOFTIRQ_ENTER
|
|
#define IRQ_EXIT SOFTIRQ_EXIT
|