Re: [PATCH v10 1/7] fieldbus_dev: add Fieldbus Device subsystem.

From: Greg KH
Date: Tue Apr 16 2019 - 07:47:37 EST


On Tue, Apr 09, 2019 at 10:42:44AM -0400, Sven Van Asbroeck wrote:
> 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.
>
> Signed-off-by: Sven Van Asbroeck <TheSven73@xxxxxxxxx>
> ---
> Documentation/ABI/testing/fieldbus-dev-cdev | 31 ++
> .../ABI/testing/sysfs-class-fieldbus-dev | 62 ++++
> Documentation/fieldbus_dev/fieldbus_dev.txt | 66 ++++
> drivers/staging/Kconfig | 2 +
> drivers/staging/Makefile | 1 +
> drivers/staging/fieldbus/Kconfig | 19 +
> drivers/staging/fieldbus/Makefile | 9 +
> drivers/staging/fieldbus/dev_core.c | 349 ++++++++++++++++++
> include/linux/fieldbus_dev.h | 106 ++++++

Please keep all staging code self-contained within your drivers/staging/
directory.

For the dt stuff, as that has been acked, it can go into the "real"
locations. But for the include and sysfs documentation stuff, that all
needs to stay within your directory.

Can you respin this series based on that and resend?

thanks,

greg k-h