Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: most: net: rename module

This patch renames the folder and the source file of the networking module.
It is needed to clean up the directory layout of the driver.

Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Christian Gromm and committed by
Greg Kroah-Hartman
9c7201bf 9249c6a6

+9 -5
+1 -1
drivers/staging/most/Kconfig
··· 19 19 20 20 source "drivers/staging/most/cdev/Kconfig" 21 21 22 - source "drivers/staging/most/aim-network/Kconfig" 22 + source "drivers/staging/most/net/Kconfig" 23 23 24 24 source "drivers/staging/most/aim-sound/Kconfig" 25 25
+3 -3
drivers/staging/most/aim-network/Kconfig drivers/staging/most/net/Kconfig
··· 2 2 # MOST Networking configuration 3 3 # 4 4 5 - config AIM_NETWORK 6 - tristate "Networking AIM" 5 + config MOST_NET 6 + tristate "Net" 7 7 depends on NET 8 8 9 9 ---help--- 10 10 Say Y here if you want to commumicate via a networking device. 11 11 12 12 To compile this driver as a module, choose M here: the 13 - module will be called aim_network. 13 + module will be called most_net.
+1 -1
drivers/staging/most/aim-network/networking.c drivers/staging/most/net/net.c
··· 496 496 } 497 497 498 498 static struct most_aim aim = { 499 - .name = "networking", 499 + .name = "net", 500 500 .probe_channel = aim_probe_channel, 501 501 .disconnect_channel = aim_disconnect_channel, 502 502 .tx_completion = aim_resume_tx_channel,
+4
drivers/staging/most/net/Makefile
··· 1 + obj-$(CONFIG_MOST_NET) += most_net.o 2 + 3 + most_net-objs := net.o 4 + ccflags-y += -Idrivers/staging/