lkml.org 
[lkml]   [2013]   [Feb]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] spi: spi-xilinx: Use DT information for bits_per_word value
From: Jens Renner <renner@efe-gmbh.de>

This patch overrides the default value of bits_per_word with the actual value of "xlnx,num-transfer-bits" from the DTS file to allow for 16 and 32 bit word lengths.

Signed-off-by: Jens Renner <renner@efe-gmbh.de>
---
diff --git a/drivers/spi/spi-xilinx.c b/drivers/spi/spi-xilinx.c
index e1d7696..03abdfa 100644
--- a/drivers/spi/spi-xilinx.c
+++ b/drivers/spi/spi-xilinx.c
@@ -487,6 +487,12 @@ static int xilinx_spi_probe(struct platform_device *dev)
&len);
if (prop && len >= sizeof(*prop))
num_cs = __be32_to_cpup(prop);
+
+ /* override default number of bits per word */
+ prop = of_get_property(dev->dev.of_node,
+ "xlnx,num-transfer-bits", &len);
+ if (prop && len >= sizeof(*prop))
+ bits_per_word = __be32_to_cpup(prop);
}
#endif


\
 
 \ /
  Last update: 2013-02-11 16:41    [W:0.046 / U:0.100 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site