x86/mce: Fix mce_rdmsrl() warning message
[linux-2.6-block.git] / drivers / iio / dummy / Kconfig
1 #
2 # Industrial I/O subsystem Dummy Driver configuration
3 #
4 menu "IIO dummy driver"
5         depends on IIO
6
7 config IIO_DUMMY_EVGEN
8         select IRQ_WORK
9         tristate
10
11 config IIO_SIMPLE_DUMMY
12        tristate "An example driver with no hardware requirements"
13        help
14          Driver intended mainly as documentation for how to write
15          a driver. May also be useful for testing userspace code
16          without hardware.
17
18 if IIO_SIMPLE_DUMMY
19
20 config IIO_SIMPLE_DUMMY_EVENTS
21        bool "Event generation support"
22        select IIO_DUMMY_EVGEN
23        help
24          Add some dummy events to the simple dummy driver.
25
26 config IIO_SIMPLE_DUMMY_BUFFER
27         bool "Buffered capture support"
28         select IIO_BUFFER
29         select IIO_TRIGGER
30         select IIO_KFIFO_BUF
31         help
32           Add buffered data capture to the simple dummy driver.
33
34 endif # IIO_SIMPLE_DUMMY
35
36 endmenu