1#=============================================================================== 2# @brief Kconfig file. 3# Copyright (c) 2020 HiSilicon (Shanghai) Technologies CO., LIMITED. 4#=============================================================================== 5 6choice 7 prompt "Choose Chip" 8 optional 9 10config CHIP_WS53 11 bool "ws53" 12 13config CHIP_WS63 14 bool "ws63" 15 16endchoice 17 18if CHIP_WS53 19menu "Chip Configurations for ws53" 20 comment "Config ws53" 21 osource "drivers/chips/ws53/Kconfig" 22endmenu 23endif 24 25if CHIP_WS63 26menu "Chip Configurations for ws63" 27 comment "Config ws63" 28 osource "drivers/chips/ws63/Kconfig" 29endmenu 30endif 31