Commit 9ef68841 authored by Mark Brown's avatar Mark Brown

Merge branch 'regmap-4.20' into regmap-next

parents 35a7f35a 95093762
...@@ -35,6 +35,16 @@ ...@@ -35,6 +35,16 @@
*/ */
#undef LOG_DEVICE #undef LOG_DEVICE
#ifdef LOG_DEVICE
static inline bool regmap_should_log(struct regmap *map)
{
return (map->dev && strcmp(dev_name(map->dev), LOG_DEVICE) == 0);
}
#else
static inline bool regmap_should_log(struct regmap *map) { return false; }
#endif
static int _regmap_update_bits(struct regmap *map, unsigned int reg, static int _regmap_update_bits(struct regmap *map, unsigned int reg,
unsigned int mask, unsigned int val, unsigned int mask, unsigned int val,
bool *change, bool force_write); bool *change, bool force_write);
...@@ -1755,10 +1765,8 @@ int _regmap_write(struct regmap *map, unsigned int reg, ...@@ -1755,10 +1765,8 @@ int _regmap_write(struct regmap *map, unsigned int reg,
} }
} }
#ifdef LOG_DEVICE if (regmap_should_log(map))
if (map->dev && strcmp(dev_name(map->dev), LOG_DEVICE) == 0)
dev_info(map->dev, "%x <= %x\n", reg, val); dev_info(map->dev, "%x <= %x\n", reg, val);
#endif
trace_regmap_reg_write(map, reg, val); trace_regmap_reg_write(map, reg, val);
...@@ -2450,10 +2458,8 @@ static int _regmap_read(struct regmap *map, unsigned int reg, ...@@ -2450,10 +2458,8 @@ static int _regmap_read(struct regmap *map, unsigned int reg,
ret = map->reg_read(context, reg, val); ret = map->reg_read(context, reg, val);
if (ret == 0) { if (ret == 0) {
#ifdef LOG_DEVICE if (regmap_should_log(map))
if (map->dev && strcmp(dev_name(map->dev), LOG_DEVICE) == 0)
dev_info(map->dev, "%x => %x\n", reg, *val); dev_info(map->dev, "%x => %x\n", reg, *val);
#endif
trace_regmap_reg_read(map, reg, *val); trace_regmap_reg_read(map, reg, *val);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment