forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'regulator-v4.15' of git://git.kernel.org/pub/scm/linux/ker…
…nel/git/broonie/regulator Pull regulator updates from Mark Brown: "A very quiet release for regulator, there's some new device support in existing drivers here and a few fixes but nothing in the core. Summary: - New device support for Allwinner AXP813, Dialog DA223/4/5 and Qualcomm PMI8994" * tag 'regulator-v4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator: regulator: tps65218: remove unused tps_info structure regulator: tps65218: Fix strobe assignment regulator: qcom_spmi: Include offset when translating voltages regulator: qcom_spmi: Add support for pmi8994 regulator: da9211: update for supporting da9223/4/5 ASoC: pfuze100: Remove leading zero from '@08' notation regulator: axp20x: Simplify axp20x_is_polyphase_slave implementation regulator: axp20x: Add support for AXP813 regulators
- Loading branch information
Showing
12 changed files
with
241 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* da9211-regulator.c - Regulator device driver for DA9211/DA9212 | ||
* /DA9213/DA9214/DA9215 | ||
* /DA9213/DA9223/DA9214/DA9224/DA9215/DA9225 | ||
* Copyright (C) 2015 Dialog Semiconductor Ltd. | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
|
@@ -496,8 +496,11 @@ static const struct i2c_device_id da9211_i2c_id[] = { | |
{"da9211", DA9211}, | ||
{"da9212", DA9212}, | ||
{"da9213", DA9213}, | ||
{"da9223", DA9223}, | ||
{"da9214", DA9214}, | ||
{"da9224", DA9224}, | ||
{"da9215", DA9215}, | ||
{"da9225", DA9225}, | ||
{}, | ||
}; | ||
MODULE_DEVICE_TABLE(i2c, da9211_i2c_id); | ||
|
@@ -507,8 +510,11 @@ static const struct of_device_id da9211_dt_ids[] = { | |
{ .compatible = "dlg,da9211", .data = &da9211_i2c_id[0] }, | ||
{ .compatible = "dlg,da9212", .data = &da9211_i2c_id[1] }, | ||
{ .compatible = "dlg,da9213", .data = &da9211_i2c_id[2] }, | ||
{ .compatible = "dlg,da9214", .data = &da9211_i2c_id[3] }, | ||
{ .compatible = "dlg,da9215", .data = &da9211_i2c_id[4] }, | ||
{ .compatible = "dlg,da9223", .data = &da9211_i2c_id[3] }, | ||
{ .compatible = "dlg,da9214", .data = &da9211_i2c_id[4] }, | ||
{ .compatible = "dlg,da9224", .data = &da9211_i2c_id[5] }, | ||
{ .compatible = "dlg,da9215", .data = &da9211_i2c_id[6] }, | ||
{ .compatible = "dlg,da9225", .data = &da9211_i2c_id[7] }, | ||
{}, | ||
}; | ||
MODULE_DEVICE_TABLE(of, da9211_dt_ids); | ||
|
@@ -526,5 +532,5 @@ static struct i2c_driver da9211_regulator_driver = { | |
module_i2c_driver(da9211_regulator_driver); | ||
|
||
MODULE_AUTHOR("James Ban <[email protected]>"); | ||
MODULE_DESCRIPTION("DA9211/DA9212/DA9213/DA9214/DA9215 regulator driver"); | ||
MODULE_DESCRIPTION("DA9211/DA9212/DA9213/DA9223/DA9214/DA9224/DA9215/DA9225 regulator driver"); | ||
MODULE_LICENSE("GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.