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 'for-v4.1-rc' of git://git.infradead.org/battery-2.6
Pull power supply and reset fixes from Sebastian Reichel: "misc fixes" * tag 'for-v4.1-rc' of git://git.infradead.org/battery-2.6: power: bq27x00_battery: Add missing MODULE_ALIAS power: reset: Add MFD_SYSCON depends for brcmstb power: reset: ltc2952: Remove bogus hrtimer_start() return value checks power_supply: fix oops in collie_battery driver power/reset: at91: fix return value check in at91_reset_platform_probe() MAINTAINERS: Add me as maintainer of Nokia N900 power supply drivers axp288_fuel_gauge: Add original author details
- Loading branch information
Showing
7 changed files
with
27 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6959,6 +6959,17 @@ T: git git://git.rocketboards.org/linux-socfpga-next.git | |
S: Maintained | ||
F: arch/nios2/ | ||
|
||
NOKIA N900 POWER SUPPLY DRIVERS | ||
M: Pali Rohár <[email protected]> | ||
S: Maintained | ||
F: include/linux/power/bq2415x_charger.h | ||
F: include/linux/power/bq27x00_battery.h | ||
F: include/linux/power/isp1704_charger.h | ||
F: drivers/power/bq2415x_charger.c | ||
F: drivers/power/bq27x00_battery.c | ||
F: drivers/power/isp1704_charger.c | ||
F: drivers/power/rx51_battery.c | ||
|
||
NTB DRIVER | ||
M: Jon Mason <[email protected]> | ||
M: Dave Jiang <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -1149,6 +1149,7 @@ static struct platform_driver axp288_fuel_gauge_driver = { | |
|
||
module_platform_driver(axp288_fuel_gauge_driver); | ||
|
||
MODULE_AUTHOR("Ramakrishna Pallala <[email protected]>"); | ||
MODULE_AUTHOR("Todd Brandt <[email protected]>"); | ||
MODULE_DESCRIPTION("Xpower AXP288 Fuel Gauge 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1109,6 +1109,14 @@ static void __exit bq27x00_battery_exit(void) | |
} | ||
module_exit(bq27x00_battery_exit); | ||
|
||
#ifdef CONFIG_BATTERY_BQ27X00_PLATFORM | ||
MODULE_ALIAS("platform:bq27000-battery"); | ||
#endif | ||
|
||
#ifdef CONFIG_BATTERY_BQ27X00_I2C | ||
MODULE_ALIAS("i2c:bq27000-battery"); | ||
#endif | ||
|
||
MODULE_AUTHOR("Rodolfo Giometti <[email protected]>"); | ||
MODULE_DESCRIPTION("BQ27x00 battery monitor 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