aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-01-25 20:46:53 +0000
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-01-25 21:20:49 +0000
commit7e53b195e412a813e915843adc7e4d91868e8e94 (patch)
tree894a83b52939e7e67b7e29a54aef2ab1ad4d1e0b /drivers/base
parentregmap: Add support for padding between register and address (diff)
downloadlinux-dev-7e53b195e412a813e915843adc7e4d91868e8e94.tar.xz
linux-dev-7e53b195e412a813e915843adc7e4d91868e8e94.zip
regmap: Unexport regcache_write() and regcache_read()
They have no current users which is fortunate as they don't take the lock and therefore aren't safe to use externally. We'll need to add new operations if direct cache access is needed. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/base')
-rw-r--r--drivers/base/regmap/regcache.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/base/regmap/regcache.c b/drivers/base/regmap/regcache.c
index 1ead66186b7c..99beccfad4d7 100644
--- a/drivers/base/regmap/regcache.c
+++ b/drivers/base/regmap/regcache.c
@@ -211,7 +211,6 @@ int regcache_read(struct regmap *map,
return -EINVAL;
}
-EXPORT_SYMBOL_GPL(regcache_read);
/**
* regcache_write: Set the value of a given register in the cache.
@@ -238,7 +237,6 @@ int regcache_write(struct regmap *map,
return 0;
}
-EXPORT_SYMBOL_GPL(regcache_write);
/**
* regcache_sync: Sync the register cache with the hardware.