summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a80aa7b..32a0a5a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
# Makefile for llmnrd
#
-# Copyright (C) 2014-2015 Tobias Klauser <tklauser@distanz.ch>
+# Copyright (C) 2014-2016 Tobias Klauser <tklauser@distanz.ch>
-VERSION = 0.1-rc1
+VERSION = 0.1
# llmnrd binary
D_P = llmnrd
ack&id=7ba2f2757d84eae533679306f03c93c118437a87'>Documentation parentf55532a0c0b8bb6148f4e07853b876ef73bc69ca (diff)
spi: core: add hook flash_read_supported to spi_master
If hook spi_flash_read is implemented the fast flash read feature is enabled for all devices attached to the respective master. In most cases there is just one flash chip, however there are also devices with more than one flash chip, namely some WiFi routers. Then the fast flash read feature can be used for the first chip only. OpenWRT implemented an own handling of this case, using controller_data element of spi_device to hold the information whether fast flash read can be used for a device. This patch adds hook flash_read_supported to spi_master which is used to extend spi_flash_read_supported() by checking whether the fast flash read feature can be used for a specific spi_device. If the hook is not implemented the default behavior is to allow fast flash read for all devices (if spi_flash_read is implemented). Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation')