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

Commit e908ed03 authored by Georgios Emmanouil's avatar Georgios Emmanouil Committed by Greg Kroah-Hartman
Browse files

Staging:wilc1000:wilc_spi: Fixed spelling error



Fixed spelling error. 'unkmown' to 'unknown'.

Signed-off-by: default avatarGeorgios Emmanouil <geo.emmnl@gmail.com>
Reviewed-by: default avatarJulian Calaby <julian.calaby@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 086959e6
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -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) {
					if ((tmp >> IRG_FLAGS_OFFSET) & unknown_mask) {
						dev_err(&spi->dev, "Unexpected interrupt (2): j=%d, tmp=%x, mask=%x\n", j, tmp, unkmown_mask);
						dev_err(&spi->dev, "Unexpected interrupt (2): j=%d, tmp=%x, mask=%x\n", j, tmp, unknown_mask);
						happended = 1;
						happended = 1;
					}
					}
				}
				}