Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8779bf84 authored by Anchal Jain's avatar Anchal Jain Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: Check for quoted strings broken across lines



checkpatch warn about quoted strings split across lines.
So, convert multi-line string into a single line.

Signed-off-by: default avatarAnchal Jain <anchalj109@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 78285d09
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -442,8 +442,9 @@ static int spi_cmd_complete(struct wilc *wilc, u8 cmd, u32 adr, u8 *b, u32 sz,
	/* } while(&rptr[1] <= &rb[len2]); */

	if (rsp != cmd) {
		dev_err(&spi->dev, "Failed cmd response, cmd (%02x)"
			 ", resp (%02x)\n", cmd, rsp);
		dev_err(&spi->dev,
			"Failed cmd response, cmd (%02x), resp (%02x)\n",
			cmd, rsp);
		result = N_FAIL;
		return result;
	}