Commit 3c174d29 authored by Guenter Roeck's avatar Guenter Roeck Committed by Mark Brown

regmap: Export regmap_get_val_endian

We'll need to call it from regmap-i2c.c, which can be built as module.
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 97bf6af1
...@@ -233,6 +233,10 @@ int _regmap_raw_write(struct regmap *map, unsigned int reg, ...@@ -233,6 +233,10 @@ int _regmap_raw_write(struct regmap *map, unsigned int reg,
void regmap_async_complete_cb(struct regmap_async *async, int ret); void regmap_async_complete_cb(struct regmap_async *async, int ret);
enum regmap_endian regmap_get_val_endian(struct device *dev,
const struct regmap_bus *bus,
const struct regmap_config *config);
extern struct regcache_ops regcache_rbtree_ops; extern struct regcache_ops regcache_rbtree_ops;
extern struct regcache_ops regcache_lzo_ops; extern struct regcache_ops regcache_lzo_ops;
extern struct regcache_ops regcache_flat_ops; extern struct regcache_ops regcache_flat_ops;
......
...@@ -473,9 +473,9 @@ static enum regmap_endian regmap_get_reg_endian(const struct regmap_bus *bus, ...@@ -473,9 +473,9 @@ static enum regmap_endian regmap_get_reg_endian(const struct regmap_bus *bus,
return REGMAP_ENDIAN_BIG; return REGMAP_ENDIAN_BIG;
} }
static enum regmap_endian regmap_get_val_endian(struct device *dev, enum regmap_endian regmap_get_val_endian(struct device *dev,
const struct regmap_bus *bus, const struct regmap_bus *bus,
const struct regmap_config *config) const struct regmap_config *config)
{ {
struct device_node *np; struct device_node *np;
enum regmap_endian endian; enum regmap_endian endian;
...@@ -513,6 +513,7 @@ static enum regmap_endian regmap_get_val_endian(struct device *dev, ...@@ -513,6 +513,7 @@ static enum regmap_endian regmap_get_val_endian(struct device *dev,
/* Use this if no other value was found */ /* Use this if no other value was found */
return REGMAP_ENDIAN_BIG; return REGMAP_ENDIAN_BIG;
} }
EXPORT_SYMBOL_GPL(regmap_get_val_endian);
/** /**
* regmap_init(): Initialise register map * regmap_init(): Initialise register map
......
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