regmap: Rename LZO cache type to compressed
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Wed, 2 Nov 2011 15:00:03 +0000 (15:00 +0000)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 8 Nov 2011 14:15:00 +0000 (14:15 +0000)
Users probably don't care about the specific compression algorithm and
we might want to use a different algorithm (snappy being the one I'm
thinking of right now) so update the public interface to have a more
generic name.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/base/regmap/regcache-lzo.c
include/linux/regmap.h

index 066aeec..854448d 100644 (file)
@@ -351,7 +351,7 @@ static int regcache_lzo_sync(struct regmap *map)
 }
 
 struct regcache_ops regcache_lzo_ops = {
-       .type = REGCACHE_LZO,
+       .type = REGCACHE_COMPRESSED,
        .name = "lzo",
        .init = regcache_lzo_init,
        .exit = regcache_lzo_exit,
index 32043a9..bebda14 100644 (file)
@@ -25,7 +25,7 @@ enum regcache_type {
        REGCACHE_NONE,
        REGCACHE_INDEXED,
        REGCACHE_RBTREE,
-       REGCACHE_LZO
+       REGCACHE_COMPRESSED
 };
 
 /**