1# shared_irq configuration options 2 3# Copyright (c) 2015 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig SHARED_IRQ 7 bool "Shared interrupt driver" 8 default y 9 depends on DT_HAS_SHARED_IRQ_ENABLED 10 help 11 Include shared interrupt support in system. Shared interrupt 12 support is NOT required in most systems. If in doubt answer no. 13 14config SHARED_IRQ_INIT_PRIORITY 15 int "Shared IRQ init priority" 16 depends on SHARED_IRQ 17 default 45 18 help 19 Shared IRQ are initialized on POST_KERNEL init level. They 20 have to be initialized before any device that uses them. 21