1# Copyright (c) 2021 Sateesh Kotapati 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_SERIES_EFR32MG24 5 6config NUM_IRQS 7 # must be >= the highest interrupt number used 8 default 75 9 10config PM 11 default n 12 select UART_INTERRUPT_DRIVEN if SERIAL_SUPPORT_INTERRUPT 13 14choice PM_POLICY 15 default PM_POLICY_DEFAULT 16 depends on PM 17endchoice 18 19endif 20