-
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 remote-tracking branches 'regulator/topic/da9211', 'regulator/t…
…opic/pfuze100' and 'regulator/topic/tps65218' into regulator-next
- Loading branch information
Showing
8 changed files
with
95 additions
and
37 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
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
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