|
@@ -1408,7 +1408,7 @@ int _regmap_write(struct regmap *map, unsigned int reg,
|
|
|
}
|
|
|
|
|
|
#ifdef LOG_DEVICE
|
|
|
- if (strcmp(dev_name(map->dev), LOG_DEVICE) == 0)
|
|
|
+ if (map->dev && strcmp(dev_name(map->dev), LOG_DEVICE) == 0)
|
|
|
dev_info(map->dev, "%x <= %x\n", reg, val);
|
|
|
#endif
|
|
|
|
|
@@ -2058,7 +2058,7 @@ static int _regmap_read(struct regmap *map, unsigned int reg,
|
|
|
ret = map->reg_read(context, reg, val);
|
|
|
if (ret == 0) {
|
|
|
#ifdef LOG_DEVICE
|
|
|
- if (strcmp(dev_name(map->dev), LOG_DEVICE) == 0)
|
|
|
+ if (map->dev && strcmp(dev_name(map->dev), LOG_DEVICE) == 0)
|
|
|
dev_info(map->dev, "%x => %x\n", reg, *val);
|
|
|
#endif
|
|
|
|