aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/base/regmap/regcache-lzo.c2
-rw-r--r--include/linux/regmap.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/regmap/regcache-lzo.c b/drivers/base/regmap/regcache-lzo.c
index 066aeece3626..854448d09293 100644
--- a/drivers/base/regmap/regcache-lzo.c
+++ b/drivers/base/regmap/regcache-lzo.c
@@ -351,7 +351,7 @@ static int regcache_lzo_sync(struct regmap *map)
351} 351}
352 352
353struct regcache_ops regcache_lzo_ops = { 353struct regcache_ops regcache_lzo_ops = {
354 .type = REGCACHE_LZO, 354 .type = REGCACHE_COMPRESSED,
355 .name = "lzo", 355 .name = "lzo",
356 .init = regcache_lzo_init, 356 .init = regcache_lzo_init,
357 .exit = regcache_lzo_exit, 357 .exit = regcache_lzo_exit,
diff --git a/include/linux/regmap.h b/include/linux/regmap.h
index 32043a9749e6..bebda1481f23 100644
--- a/include/linux/regmap.h
+++ b/include/linux/regmap.h
@@ -25,7 +25,7 @@ enum regcache_type {
25 REGCACHE_NONE, 25 REGCACHE_NONE,
26 REGCACHE_INDEXED, 26 REGCACHE_INDEXED,
27 REGCACHE_RBTREE, 27 REGCACHE_RBTREE,
28 REGCACHE_LZO 28 REGCACHE_COMPRESSED
29}; 29};
30 30
31/** 31/**