summaryrefslogtreecommitdiff
path: root/drivers/base
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-02-06 18:01:35 +0000
committerLokesh Pathak <lpathak@nvidia.com>2012-03-05 07:59:49 -0800
commitbaa725e95f8a63df2bb7de735af5c62179cd3357 (patch)
tree845316f915c1091514a541b240cbbd8da910be5c /drivers/base
parentf0c0620f781a8e632c02edddb57b6923358f6619 (diff)
regmap: Don't use bitfields for booleans
This was a cut'n'paste from some older code. Since we're about to add debugfs support don't do the obvious thing and use bool, use u32 instead (which debugfs has been using since time immemorial). cherry-picked from mainline 847fb6fdf58c0ef4c207d2853a043a4da3db9c76 Change-Id: I0eff043969a97190e7470bc695ef78323e9cb8d7 Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: http://git-master/r/87587
Diffstat (limited to 'drivers/base')
-rw-r--r--drivers/base/regmap/internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/base/regmap/internal.h b/drivers/base/regmap/internal.h
index 9ec8d8ff6db2..abd76678ed73 100644
--- a/drivers/base/regmap/internal.h
+++ b/drivers/base/regmap/internal.h
@@ -66,16 +66,16 @@ struct regmap {
unsigned int num_reg_defaults_raw;
/* if set, only the cache is modified not the HW */
- unsigned int cache_only:1;
+ u32 cache_only;
/* if set, only the HW is modified not the cache */
- unsigned int cache_bypass:1;
+ u32 cache_bypass;
/* if set, remember to free reg_defaults_raw */
- unsigned int cache_free:1;
+ bool cache_free;
struct reg_default *reg_defaults;
const void *reg_defaults_raw;
void *cache;
- bool cache_dirty;
+ u32 cache_dirty;
struct reg_default *patch;
int patch_regs;