From 7bca126561b80f626dea269d7a6284a7cde0a8ed Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Fri, 15 Jun 2012 22:28:12 +0000 Subject: Let the programmer driver decide how to do AAI transfers Currently spi_aai_write() is implemented without an abstraction mechanism for the programmer driver. This adds another function pointer 'write_aai' to struct spi_programmer, which is set to default_spi_write_aai (renamed spi_aai_write) for all programmers for now. A patch which utilises this abstraction in the dediprog driver will follow. Corresponding to flashrom svn r1543. Signed-off-by: Nico Huber Acked-by: Carl-Daniel Hailfinger --- linux_spi.c | 1 + 1 file changed, 1 insertion(+) (limited to 'linux_spi.c') diff --git a/linux_spi.c b/linux_spi.c index f4d30c9..2f46463 100644 --- a/linux_spi.c +++ b/linux_spi.c @@ -54,6 +54,7 @@ static const struct spi_programmer spi_programmer_linux = { .multicommand = default_spi_send_multicommand, .read = linux_spi_read, .write_256 = linux_spi_write_256, + .write_aai = default_spi_write_aai, }; int linux_spi_init(void) -- cgit v1.1