diff options
author | Beomho Seo <beomho.seo@samsung.com> | 2015-04-03 17:26:08 +0900 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2015-04-06 17:46:27 +0200 |
commit | 709c2c70c8ea73f488971f1de3c39fbdac995951 (patch) | |
tree | d9e71388036e98b7e6752a813e354bc499227f31 /include/linux/power | |
parent | 7be5ac2c32bd26c47a05367c0135cb6e67b3d452 (diff) | |
download | linux-next-709c2c70c8ea73f488971f1de3c39fbdac995951.tar.gz |
power: max17042_battery: Use reg type instead of chip type
Currently, max17042 battery driver choose register map by MAX17042_DevName
register. But it is return IC specific firmware version. So other maxim chip
hard to use this drvier. This patch choose chip type from driver_data.
Signed-off-by: Beomho Seo <beomho.seo@samsung.com>
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
Diffstat (limited to 'include/linux/power')
-rw-r--r-- | include/linux/power/max17042_battery.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/linux/power/max17042_battery.h b/include/linux/power/max17042_battery.h index 89dd84f47c6e..cf112b4075c8 100644 --- a/include/linux/power/max17042_battery.h +++ b/include/linux/power/max17042_battery.h @@ -126,7 +126,14 @@ enum max17047_register { MAX17047_QRTbl30 = 0x42, }; -enum max170xx_chip_type {MAX17042, MAX17047}; +enum max170xx_chip_type { + MAXIM_DEVICE_TYPE_UNKNOWN = 0, + MAXIM_DEVICE_TYPE_MAX17042, + MAXIM_DEVICE_TYPE_MAX17047, + MAXIM_DEVICE_TYPE_MAX17050, + + MAXIM_DEVICE_TYPE_NUM +}; /* * used for setting a register to a desired value |