[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1567488661-11428-2-git-send-email-hayashibara.keiji@socionext.com>
Date: Tue, 3 Sep 2019 14:30:59 +0900
From: Keiji Hayashibara <hayashibara.keiji@...ionext.com>
To: broonie@...nel.org, yamada.masahiro@...ionext.com,
linux-spi@...r.kernel.org, linux-arm-kernel@...ts.infradead.org
Cc: masami.hiramatsu@...aro.org, jaswinder.singh@...aro.org,
linux-kernel@...r.kernel.org, hayashibara.keiji@...ionext.com
Subject: [PATCH 1/3] spi: uniphier: fix wrong register overwrite
When it changes the spi mode, the register is overwritten incorrectly.
This commit fixes this register overwrite.
Signed-off-by: Keiji Hayashibara <hayashibara.keiji@...ionext.com>
---
drivers/spi/spi-uniphier.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/spi/spi-uniphier.c b/drivers/spi/spi-uniphier.c
index c1e6f32..e6ebbb1 100644
--- a/drivers/spi/spi-uniphier.c
+++ b/drivers/spi/spi-uniphier.c
@@ -214,6 +214,7 @@ static void uniphier_spi_setup_transfer(struct spi_device *spi,
if (!priv->is_save_param || priv->mode != spi->mode) {
uniphier_spi_set_mode(spi);
priv->mode = spi->mode;
+ priv->is_save_param = false;
}
if (!priv->is_save_param || priv->bits_per_word != t->bits_per_word) {
--
2.7.4
Powered by blists - more mailing lists