aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/staging/mt7621-spi
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2019-02-01 11:17:12 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-02-04 12:34:36 +0100
commitfeec667e801aa94a1054837e0bd537ee01290f2e (patch)
tree80c0d5f35cbea30ee8120aba07c1dfdd906e75a5 /drivers/staging/mt7621-spi
parentstaging: spi: mt7621: Minor cosmetic changes (diff)
downloadwireguard-linux-feec667e801aa94a1054837e0bd537ee01290f2e.tar.xz
wireguard-linux-feec667e801aa94a1054837e0bd537ee01290f2e.zip
staging: spi: mt7621: Use recommended comment style
This patch changes some comments to use the recommended multi-line comment style. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Mark Brown <broonie@kernel.org> Cc: Sankalp Negi <sankalpnegi2310@gmail.com> Cc: Chuanhong Guo <gch981213@gmail.com> Cc: John Crispin <john@phrozen.org> Reviewed-by: NeilBrown <neil@brown.name> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/mt7621-spi')
-rw-r--r--drivers/staging/mt7621-spi/spi-mt7621.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers/staging/mt7621-spi/spi-mt7621.c
index e548f816ea9e..00cff75ee7ac 100644
--- a/drivers/staging/mt7621-spi/spi-mt7621.c
+++ b/drivers/staging/mt7621-spi/spi-mt7621.c
@@ -123,10 +123,10 @@ static int mt7621_spi_prepare(struct spi_device *spi, unsigned int speed)
if (spi->mode & SPI_LSB_FIRST)
reg |= MT7621_LSB_FIRST;
- /* This SPI controller seems to be tested on SPI flash only
- * and some bits are swizzled under other SPI modes probably
- * due to incorrect wiring inside the silicon. Only mode 0
- * works correctly.
+ /*
+ * This SPI controller seems to be tested on SPI flash only and some
+ * bits are swizzled under other SPI modes probably due to incorrect
+ * wiring inside the silicon. Only mode 0 works correctly.
*/
reg &= ~(MT7621_CPHA | MT7621_CPOL);
@@ -155,9 +155,10 @@ static inline int mt7621_spi_wait_till_ready(struct mt7621_spi *rs)
static void mt7621_spi_read_half_duplex(struct mt7621_spi *rs,
int rx_len, u8 *buf)
{
- /* Combine with any pending write, and perform one or
- * more half-duplex transactions reading 'len' bytes.
- * Data to be written is already in MT7621_SPI_DATA*
+ /*
+ * Combine with any pending write, and perform one or more half-duplex
+ * transactions reading 'len' bytes. Data to be written is already in
+ * MT7621_SPI_DATA.
*/
int tx_len = rs->pending_write;