aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/kpc2000/kpc2000_spi.c
diff options
context:
space:
mode:
authorGeordan Neukum <gneukum1@gmail.com>2019-06-02 15:58:33 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-06-03 14:15:23 +0200
commit4d632cdbdd28aedf884f67e6cc61364ea4ded7d4 (patch)
tree1c5133d4da933c4d3814ff27004db0e6e3fe2824 /drivers/staging/kpc2000/kpc2000_spi.c
parentstaging: rtl8712: Replace function r8712_init_mlme_priv (diff)
downloadlinux-dev-4d632cdbdd28aedf884f67e6cc61364ea4ded7d4.tar.xz
linux-dev-4d632cdbdd28aedf884f67e6cc61364ea4ded7d4.zip
staging: kpc2000: kpc_spi: Remove unnecessary consecutive newlines
The kpc2000_spi.c file contains instances of unnecessary consecutive newlines which negatively impact the readability of the file. Remove all unnecessary consecutive newlines. Signed-off-by: Geordan Neukum <gneukum1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/kpc2000/kpc2000_spi.c')
-rw-r--r--drivers/staging/kpc2000/kpc2000_spi.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/staging/kpc2000/kpc2000_spi.c b/drivers/staging/kpc2000/kpc2000_spi.c
index 9a23808ffaa1..ef7e062bf52c 100644
--- a/drivers/staging/kpc2000/kpc2000_spi.c
+++ b/drivers/staging/kpc2000/kpc2000_spi.c
@@ -97,8 +97,6 @@ static struct spi_board_info p2kr0_board_info[] = {
#define KP_SPI_REG_STATUS_RXFFE 0x40
#define KP_SPI_REG_STATUS_RXFFF 0x80
-
-
/******************
* SPI Structures *
******************/
@@ -111,7 +109,6 @@ struct kp_spi {
unsigned int pin_dir:1;
};
-
struct kp_spi_controller_state {
void __iomem *base;
unsigned long phys;
@@ -120,7 +117,6 @@ struct kp_spi_controller_state {
s64 conf_cache;
};
-
union kp_spi_config {
/* use this to access individual elements */
struct __attribute__((packed)) spi_config_bitfield {
@@ -141,8 +137,6 @@ union kp_spi_config {
u32 reg;
};
-
-
union kp_spi_status {
struct __attribute__((packed)) spi_status_bitfield {
unsigned int rx : 1; /* Rx Status */
@@ -158,8 +152,6 @@ union kp_spi_status {
u32 reg;
};
-
-
union kp_spi_ffctrl {
struct __attribute__((packed)) spi_ffctrl_bitfield {
unsigned int ffstart : 1; /* FIFO Start */
@@ -168,8 +160,6 @@ union kp_spi_ffctrl {
u32 reg;
};
-
-
/***************
* SPI Helpers *
***************/
@@ -445,8 +435,6 @@ kp_spi_cleanup(struct spi_device *spidev)
}
}
-
-
/******************
* Probe / Remove *
******************/
@@ -538,7 +526,6 @@ kp_spi_remove(struct platform_device *pldev)
return 0;
}
-
static struct platform_driver kp_spi_driver = {
.driver = {
.name = KP_DRIVER_NAME_SPI,