aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Sperl <kernel@martin.sperl.org>2015-12-22 13:03:22 -0500
committerMark Brown <broonie@kernel.org>2016-01-05 14:05:23 -0500
commit339ec3ce54e5c7137287dc807555ae69934b2d2a (patch)
treeb1ba8ce824f93e0c42cb119fb977e212ea301945
parente6520a3c8877d02c471135afb371e79b04409ab8 (diff)
spi: loopback-test: rename method spi_test_fill_tx to spi_test_fill_pattern
Rename method spi_test_fill_tx to spi_test_fill_pattern to better describe what it does. Signed-off-by: Martin Sperl <kernel@martin.sperl.org> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/spi/spi-loopback-test.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/spi/spi-loopback-test.c b/drivers/spi/spi-loopback-test.c
index 8af2e4070153..81fa9068df43 100644
--- a/drivers/spi/spi-loopback-test.c
+++ b/drivers/spi/spi-loopback-test.c
@@ -574,7 +574,8 @@ static int spi_test_translate(struct spi_device *spi,
574 return -EINVAL; 574 return -EINVAL;
575} 575}
576 576
577static int spi_test_fill_tx(struct spi_device *spi, struct spi_test *test) 577static int spi_test_fill_pattern(struct spi_device *spi,
578 struct spi_test *test)
578{ 579{
579 struct spi_transfer *xfers = test->transfers; 580 struct spi_transfer *xfers = test->transfers;
580 u8 *tx_buf; 581 u8 *tx_buf;
@@ -691,8 +692,8 @@ static int _spi_test_run_iter(struct spi_device *spi,
691 spi_message_add_tail(x, msg); 692 spi_message_add_tail(x, msg);
692 } 693 }
693 694
694 /* fill in the transfer data */ 695 /* fill in the transfer buffers with pattern */
695 ret = spi_test_fill_tx(spi, test); 696 ret = spi_test_fill_pattern(spi, test);
696 if (ret) 697 if (ret)
697 return ret; 698 return ret;
698 699