Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1591309 > unrolled thread

[PATCH 2/4] Staging:wilc1000:wilc_spi: Fixed alignment to match parenthesis

Started byGeorgios Emmanouil <geo.emmnl@gmail.com>
First post2017-03-02 18:20 +0100
Last post2017-03-04 23:50 +0100
Articles 4 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 2/4] Staging:wilc1000:wilc_spi: Fixed alignment to match parenthesis Georgios Emmanouil <geo.emmnl@gmail.com> - 2017-03-02 18:20 +0100
    [PATCH 3/4] Staging:wilc1000:wilc_spi: Fixed spelling error Georgios Emmanouil <geo.emmnl@gmail.com> - 2017-03-02 20:00 +0100
      Re: [PATCH 3/4] Staging:wilc1000:wilc_spi: Fixed spelling error Julian Calaby <julian.calaby@gmail.com> - 2017-03-04 23:50 +0100
    Re: [PATCH 2/4] Staging:wilc1000:wilc_spi: Fixed alignment to match parenthesis Julian Calaby <julian.calaby@gmail.com> - 2017-03-04 23:50 +0100

#1591309 — [PATCH 2/4] Staging:wilc1000:wilc_spi: Fixed alignment to match parenthesis

FromGeorgios Emmanouil <geo.emmnl@gmail.com>
Date2017-03-02 18:20 +0100
Subject[PATCH 2/4] Staging:wilc1000:wilc_spi: Fixed alignment to match parenthesis
Message-ID<tgCyu-5uu-19@gated-at.bofh.it>
Fixed alignment to match parenthesis.

Signed-off-by: Georgios Emmanouil <geo.emmnl@gmail.com>
---
 drivers/staging/wilc1000/wilc_spi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/wilc1000/wilc_spi.c b/drivers/staging/wilc1000/wilc_spi.c
index 6bd4047..b48cb1c8 100644
--- a/drivers/staging/wilc1000/wilc_spi.c
+++ b/drivers/staging/wilc1000/wilc_spi.c
@@ -408,7 +408,7 @@ static int spi_cmd_complete(struct wilc *wilc, u8 cmd, u32 adr, u8 *b, u32 sz,

 	if (len2 > ARRAY_SIZE(wb)) {
 		dev_err(&spi->dev, "spi buffer size too small (%d) (%zu)\n",
-			 len2, ARRAY_SIZE(wb));
+			len2, ARRAY_SIZE(wb));
 		return N_FAIL;
 	}
 	/* zero spi write buffers. */
--
2.1.4

[toc] | [next] | [standalone]


#1591398 — [PATCH 3/4] Staging:wilc1000:wilc_spi: Fixed spelling error

FromGeorgios Emmanouil <geo.emmnl@gmail.com>
Date2017-03-02 20:00 +0100
Subject[PATCH 3/4] Staging:wilc1000:wilc_spi: Fixed spelling error
Message-ID<tgCyu-5uu-17@gated-at.bofh.it>
In reply to#1591309
Fixed spelling error. 'unkmown' to 'unknown'.

Signed-off-by: Georgios Emmanouil <geo.emmnl@gmail.com>
---
 drivers/staging/wilc1000/wilc_spi.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/wilc1000/wilc_spi.c b/drivers/staging/wilc1000/wilc_spi.c
index b48cb1c8..4f38922 100644
--- a/drivers/staging/wilc1000/wilc_spi.c
+++ b/drivers/staging/wilc1000/wilc_spi.c
@@ -963,12 +963,12 @@ static int wilc_spi_read_int(struct wilc *wilc, u32 *int_status)
 				}

 				{
-					u32 unkmown_mask;
+					u32 unknown_mask;

-					unkmown_mask = ~((1ul << g_spi.nint) - 1);
+					unknown_mask = ~((1ul << g_spi.nint) - 1);

-					if ((tmp >> IRG_FLAGS_OFFSET) & unkmown_mask) {
-						dev_err(&spi->dev, "Unexpected interrupt (2): j=%d, tmp=%x, mask=%x\n", j, tmp, unkmown_mask);
+					if ((tmp >> IRG_FLAGS_OFFSET) & unknown_mask) {
+						dev_err(&spi->dev, "Unexpected interrupt (2): j=%d, tmp=%x, mask=%x\n", j, tmp, unknown_mask);
 						happended = 1;
 					}
 				}
--
2.1.4

[toc] | [prev] | [next] | [standalone]


#1592628 — Re: [PATCH 3/4] Staging:wilc1000:wilc_spi: Fixed spelling error

FromJulian Calaby <julian.calaby@gmail.com>
Date2017-03-04 23:50 +0100
SubjectRe: [PATCH 3/4] Staging:wilc1000:wilc_spi: Fixed spelling error
Message-ID<thqEW-7AQ-21@gated-at.bofh.it>
In reply to#1591398
Hi All,

On Fri, Mar 3, 2017 at 4:06 AM, Georgios Emmanouil <geo.emmnl@gmail.com> wrote:
> Fixed spelling error. 'unkmown' to 'unknown'.
>
> Signed-off-by: Georgios Emmanouil <geo.emmnl@gmail.com>

Reviewed-by: Julian Calaby <julian.calaby@gmail.com>

> ---
>  drivers/staging/wilc1000/wilc_spi.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)

-- 
Julian Calaby

Email: julian.calaby@gmail.com
Profile: http://www.google.com/profiles/julian.calaby/

[toc] | [prev] | [next] | [standalone]


#1592624

FromJulian Calaby <julian.calaby@gmail.com>
Date2017-03-04 23:50 +0100
Message-ID<thqEV-7AQ-9@gated-at.bofh.it>
In reply to#1591309
Hi All,

On Fri, Mar 3, 2017 at 4:05 AM, Georgios Emmanouil <geo.emmnl@gmail.com> wrote:
> Fixed alignment to match parenthesis.
>
> Signed-off-by: Georgios Emmanouil <geo.emmnl@gmail.com>

Reviewed-by: Julian Calaby <julian.calaby@gmail.com>

> ---
>  drivers/staging/wilc1000/wilc_spi.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

-- 
Julian Calaby

Email: julian.calaby@gmail.com
Profile: http://www.google.com/profiles/julian.calaby/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web