From c4b8c79965ab21b86c6a3a157b7a7b8175cd8150 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 7 Jun 2007 00:34:23 +0200 Subject: cscope 15.6-3 * Do not install invasive Emacs startup file 50cscope.el (Closes: #427765) --- debian/emacsen-startup | 1 - 1 file changed, 1 deletion(-) delete mode 100644 debian/emacsen-startup (limited to 'debian/emacsen-startup') diff --git a/debian/emacsen-startup b/debian/emacsen-startup deleted file mode 100644 index 5de02b7..0000000 --- a/debian/emacsen-startup +++ /dev/null @@ -1 +0,0 @@ -(require 'xcscope) -- cgit v1.2.3-54-g00ecf i/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2016-04-23 22:47:08 +0200
committerMark Brown <broonie@kernel.org>2016-04-25 18:51:31 +0100
commit7ba2f2757d84eae533679306f03c93c118437a87 (patch)
tree7a93f8c7fd162b853dd009fd66e1b71326fbb871
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>