diff options
author | Arnaud Ebalard <arno@natisbad.org> | 2014-12-16 16:20:50 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-12-22 12:51:11 -0500 |
commit | 6fd753572c34a2469b41813aa6f376569cf2681f (patch) | |
tree | 9d89b6f9b5cb62f339e1d936983fc816e89efb30 /drivers/regulator/isl9305.c | |
parent | 97bf6af1f928216fd6c5a66e8a57bfa95a659672 (diff) |
regulator: isl9305: deprecate use of isl in compatible string for isil
"isil" and "isl" prefixes are used at various locations inside the kernel
to reference Intersil corporation. This patch is part of a series fixing
those locations were "isl" is used in compatible strings to use the now
expected "isil" prefix instead (NASDAQ symbol for Intersil and most used
version). The old compatible string is kept for backward compatibility.
Signed-off-by: Arnaud Ebalard <arno@natisbad.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/isl9305.c')
-rw-r--r-- | drivers/regulator/isl9305.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/regulator/isl9305.c b/drivers/regulator/isl9305.c index 92fefd98da58..6e3a15fe00f1 100644 --- a/drivers/regulator/isl9305.c +++ b/drivers/regulator/isl9305.c | |||
@@ -177,8 +177,10 @@ static int isl9305_i2c_probe(struct i2c_client *i2c, | |||
177 | 177 | ||
178 | #ifdef CONFIG_OF | 178 | #ifdef CONFIG_OF |
179 | static const struct of_device_id isl9305_dt_ids[] = { | 179 | static const struct of_device_id isl9305_dt_ids[] = { |
180 | { .compatible = "isl,isl9305" }, | 180 | { .compatible = "isl,isl9305" }, /* for backward compat., don't use */ |
181 | { .compatible = "isl,isl9305h" }, | 181 | { .compatible = "isil,isl9305" }, |
182 | { .compatible = "isl,isl9305h" }, /* for backward compat., don't use */ | ||
183 | { .compatible = "isil,isl9305h" }, | ||
182 | {}, | 184 | {}, |
183 | }; | 185 | }; |
184 | #endif | 186 | #endif |