1## SPDX-License-Identifier: GPL-2.0-only 2 3config DRIVERS_LENOVO_WACOM 4 bool 5 default n 6 7if DRIVERS_LENOVO_WACOM 8 9choice 10 prompt "Digitizer" 11 default DIGITIZER_AUTODETECT 12 13config DIGITIZER_AUTODETECT 14 bool "Autodetect" 15 help 16 The presence of digitizer is inferred from model number stored in 17 AT24RF chip. 18 19config DIGITIZER_PRESENT 20 bool "Present" 21 help 22 The digitizer is assumed to be present. 23 24config DIGITIZER_ABSENT 25 bool "Absent" 26 help 27 The digitizer is assumed to be absent. 28 29endchoice 30 31endif 32