]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: kpc2000: move the spi driver out of its subdirectory
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 May 2019 08:47:13 +0000 (10:47 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 May 2019 06:14:18 +0000 (08:14 +0200)
There is no need for a subdirectory for just a single .c file.  So move
it out of kpc_spi/ and rename it to the module name that we want the
file to build to, saving one more linking stage.

Cc: Matt Sickler <Matt.Sickler@daktronics.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/kpc2000/Makefile
drivers/staging/kpc2000/kpc2000_spi.c [moved from drivers/staging/kpc2000/kpc_spi/spi_driver.c with 99% similarity]
drivers/staging/kpc2000/kpc_spi/Makefile [deleted file]

index 1e48e9df132942253c52d8be3b2c6d65c7ab9005..99b1699a8b70a8cadf166b827e7c534db4b5ea68 100644 (file)
@@ -2,5 +2,5 @@
 
 obj-$(CONFIG_KPC2000) += kpc2000/
 obj-$(CONFIG_KPC2000_I2C) += kpc_i2c/
-obj-$(CONFIG_KPC2000_SPI) += kpc_spi/
+obj-$(CONFIG_KPC2000_SPI) += kpc2000_spi.o
 obj-$(CONFIG_KPC2000_DMA) += kpc_dma/
similarity index 99%
rename from drivers/staging/kpc2000/kpc_spi/spi_driver.c
rename to drivers/staging/kpc2000/kpc2000_spi.c
index e84bd7015ecf2ead1be85125e0df3b708c82bd16..075ae4fafa7dd205a9c74f85341f363eccd38edb 100644 (file)
@@ -27,7 +27,7 @@
 #include <linux/spi/flash.h>
 #include <linux/mtd/partitions.h>
 
-#include "../kpc.h"
+#include "kpc.h"
 
 static struct mtd_partition p2kr0_spi0_parts[] = {
        { .name = "SLOT_0",     .size = 7798784,                .offset = 0,                },
diff --git a/drivers/staging/kpc2000/kpc_spi/Makefile b/drivers/staging/kpc2000/kpc_spi/Makefile
deleted file mode 100644 (file)
index 3018d20..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0
-
-obj-m += kpc2000_spi.o
-kpc2000_spi-objs := spi_driver.o