public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2] spi/kirkwood: add weak functions board_spi_bus_claim/release
@ 2012-03-26  9:58 Valentin Longchamp
  2012-03-27 13:27 ` Valentin Longchamp
  0 siblings, 1 reply; 14+ messages in thread
From: Valentin Longchamp @ 2012-03-26  9:58 UTC (permalink / raw)
  To: u-boot

Some kirkwood based boards may need to implement such function due to
some HW designs.

Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com>
cc: Gerlando Falauto <gerlando.falauto@keymile.com>
cc: Prafulla Wadaskar <prafulla@marvell.com>
cc: Holger Brunck <holger.brunck@keymile.com>
---
 drivers/spi/kirkwood_spi.c |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/drivers/spi/kirkwood_spi.c b/drivers/spi/kirkwood_spi.c
index db8ba8b..058dae2 100644
--- a/drivers/spi/kirkwood_spi.c
+++ b/drivers/spi/kirkwood_spi.c
@@ -86,13 +86,23 @@ void spi_free_slave(struct spi_slave *slave)
 	free(slave);
 }
 
-int spi_claim_bus(struct spi_slave *slave)
+__attribute__((weak)) int board_spi_claim_bus(struct spi_slave *slave)
 {
 	return 0;
 }
 
+int spi_claim_bus(struct spi_slave *slave)
+{
+	return board_spi_claim_bus(slave);
+}
+
+__attribute__((weak)) void board_spi_release_bus(struct spi_slave *slave)
+{
+}
+
 void spi_release_bus(struct spi_slave *slave)
 {
+	board_spi_release_bus(slave);
 }
 
 #ifndef CONFIG_SPI_CS_IS_VALID
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2012-04-04  7:12 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-26  9:58 [U-Boot] [PATCH v2] spi/kirkwood: add weak functions board_spi_bus_claim/release Valentin Longchamp
2012-03-27 13:27 ` Valentin Longchamp
2012-03-28  7:48   ` Prafulla Wadaskar
2012-03-29 12:49     ` Valentin Longchamp
2012-03-29 14:21       ` Prafulla Wadaskar
2012-03-29 14:49         ` Valentin Longchamp
2012-03-29 15:44       ` Valentin Longchamp
2012-03-30 11:34         ` Prafulla Wadaskar
2012-03-30 12:14           ` Valentin Longchamp
2012-03-30 12:58             ` Prafulla Wadaskar
2012-04-02 13:37               ` Valentin Longchamp
2012-04-03  6:35                 ` Prafulla Wadaskar
2012-04-04  7:01                   ` Valentin Longchamp
2012-04-04  7:12                     ` Prafulla Wadaskar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox