On 12/4/18 2:02 PM, Sven Van Asbroeck wrote: > diff --git a/drivers/fieldbus/Kconfig b/drivers/fieldbus/Kconfig > new file mode 100644 > index 000000000000..1d1929ba7e27 > --- /dev/null > +++ b/drivers/fieldbus/Kconfig > @@ -0,0 +1,19 @@ > +menuconfig FIELDBUS_DEV > + bool "Fieldbus Device Support" > + help > + Support for Fieldbus Device Adapters. > + > + Fieldbus device (client) adapters allow data exchange with a PLC aka. > + "Fieldbus Controller" over a fieldbus (Profinet, FLNet, etc.) > + > + They are typically used when a Linux device wants to expose itself > + as an actuator, motor, console light, switch, etc. over the fieldbus. > + > + This framework is designed to provide a generic interface to Fieldbus > + Devices from both the Linux Kernel and the userspace. > + > + If unsure, say no. > + > +if FIELDBUS_DEV > + > +endif Hi, Please consistently use one tab + 2 spaces to indent Kconfig help text, as documented in Documentation/process/coding-style.rst. -- ~Randy