diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-07-09 18:44:21 +0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-07-10 13:01:24 +0400 |
commit | 78a73e59db21b465fe60e795a0b7eadb0451370b (patch) | |
tree | e06d04df170045d9eeef68f86e784ea782799a78 /drivers/mfd/88pm80x.c | |
parent | 2984fc0093268cfffd39725a70078396c5fdef2a (diff) | |
download | linux-78a73e59db21b465fe60e795a0b7eadb0451370b.tar.xz |
mfd: Export pm80x_regmap_config
This fixes below build error when CONFIG_MFD_88PM800=m.
ERROR: "pm80x_regmap_config" [drivers/mfd/88pm800.ko] undefined!
make[1]: *** [__modpost] Error 1
make: *** [modules] Error 2
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/88pm80x.c')
-rw-r--r-- | drivers/mfd/88pm80x.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/88pm80x.c b/drivers/mfd/88pm80x.c index 77b865594c29..62da342553bd 100644 --- a/drivers/mfd/88pm80x.c +++ b/drivers/mfd/88pm80x.c @@ -29,6 +29,7 @@ const struct regmap_config pm80x_regmap_config = { .reg_bits = 8, .val_bits = 8, }; +EXPORT_SYMBOL_GPL(pm80x_regmap_config); int __devinit pm80x_init(struct i2c_client *client, const struct i2c_device_id *id) |