diff options
author | Andrew F. Davis <afd@ti.com> | 2016-03-23 17:26:33 +0300 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2016-08-23 00:37:47 +0300 |
commit | 8faf24bd061ce1e0198dd369f138364719bf8e25 (patch) | |
tree | 1680235abed6aa7ba73d22cbc293afbd29efec17 /drivers/base | |
parent | c9cab799319d1b2b947610ef580aeff2d6f06dae (diff) | |
download | linux-8faf24bd061ce1e0198dd369f138364719bf8e25.tar.xz |
regmap: cache: Fix typo in cache_bypass parameter description
commit 267c85860308d36bc163c5573308cd024f659d7c upstream.
Setting the flag 'cache_bypass' will bypass the cache not the hardware.
Fix this comment here.
Fixes: 0eef6b0415f5 ("regmap: Fix doc comment")
Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/regmap/regcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/regcache.c b/drivers/base/regmap/regcache.c index 5c1cc008af9e..3568186a77a7 100644 --- a/drivers/base/regmap/regcache.c +++ b/drivers/base/regmap/regcache.c @@ -473,7 +473,7 @@ EXPORT_SYMBOL_GPL(regcache_mark_dirty); * regcache_cache_bypass: Put a register map into cache bypass mode * * @map: map to configure - * @cache_bypass: flag if changes should not be written to the hardware + * @cache_bypass: flag if changes should not be written to the cache * * When a register map is marked with the cache bypass option, writes * to the register map API will only update the hardware and not the |