mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
fd71b9a07b
* power-supply core - new charging_orange_full_green RGB LED trigger - simplify and cleanup power-supply LED trigger code - expose power information via hwmon compatibility layer * new hardware support - enable battery support for Qualcomm Snapdragon X Elite - new battery driver for Maxim MAX17201/MAX17205 - new battery driver for Lenovo Yoga C630 laptop (custom EC) * cleanup 'struct i2c_device_id' initializations * misc. small battery driver cleanups and fixes -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEE72YNB0Y/i3JqeVQT2O7X88g7+poFAmadpdQACgkQ2O7X88g7 +poOIBAAm8B28rdJc35M0qj4akFp67z84wxGs0yR3KmwwUyIv5bHMZKXuSgOdMJ7 bVA/W5Lvzi/Mp6bF5lt4EbFt3QGIEG2odWMWcoc/PTdKaPYC7CcDBVGCZr7hQFJS 2THzaUuLVDQzVwBc62YcFh7AB+xQmJ/SaX+Ci2k//vFyQJ1EfBiOkoq6MjJXCPcT hz21hXCQjGirNSsV4gxK1EwefrRomj4MVCHCf/E5i2tM2lNtO+HPu28UznJYEh9S NB+M4Z0EADnfPWoBmB3emonYYlGlYC34kYb6nqcn6sUm9usU9JUMeZBT1yOstUMd 3p5V+uvUFQ9MGqXUgN8Qd5/ZfszCZzX2TaHDnWWRF4g7KTdSpcXOXrLW4gEO3TFf BtUU0WvZLiwXjMPrtvdTIPJCFTStfLcIAtWEyUhdCLouR2nJsAIYyfMm5OOyktqK KGeRaJhBp8c2bJTU1Xxj4FkO07z0iSY2EGDFCuEe4sBCN5EMA/ClwN/35P7Fwv30 0sRjzwS/gRkT1IiLRjqu8We3dVUxclkgsXhZ/5UuOzRqTzV7VH0xYdgn6iCOs0nz RSLFo37DqjIYbAJGcv9E6/7TSy+lB1RVHQL1DsQVKOMTf4NW5REfSoMzbjPClj8u qYTVoONCXLQEzo8oxuIly9m6eeExA3+2ulvDq00FuDb+pCVZ1ig= =+h6p -----END PGP SIGNATURE----- Merge tag 'for-v6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply Pull power supply and reset updates from Sebastian Reichel: "Power-supply core: - new charging_orange_full_green RGB LED trigger - simplify and cleanup power-supply LED trigger code - expose power information via hwmon compatibility layer New hardware support: - enable battery support for Qualcomm Snapdragon X Elite - new battery driver for Maxim MAX17201/MAX17205 - new battery driver for Lenovo Yoga C630 laptop (custom EC) Cleanups: - cleanup 'struct i2c_device_id' initializations - misc small battery driver cleanups and fixes" * tag 'for-v6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply: power: supply: sysfs: use power_supply_property_is_writeable() power: supply: qcom_battmgr: Enable battery support on x1e80100 power: supply: add support for MAX1720x standalone fuel gauge dt-bindings: power: supply: add support for MAX17201/MAX17205 fuel gauge power: reset: piix4: add missing MODULE_DESCRIPTION() macro power: supply: samsung-sdi-battery: Constify struct power_supply_maintenance_charge_table power: supply: samsung-sdi-battery: Constify struct power_supply_vbat_ri_table power: supply: lenovo_yoga_c630_battery: add Lenovo C630 driver power: supply: ingenic: Fix some error handling paths in ingenic_battery_get_property() power: supply: ab8500: Clean some error messages power: supply: ab8500: Use iio_read_channel_processed_scale() power: supply: ab8500: Fix error handling when calling iio_read_channel_processed() power: supply: hwmon: Add support for power sensors power: supply: ab8500: remove unused struct 'inst_curr_result_list' power: supply: bd99954: remove unused struct 'battery_data' power: supply: leds: Add activate() callback to triggers power: supply: leds: Share trig pointer for online and charging_full power: supply: leds: Add power_supply_[un]register_led_trigger() power: supply: Drop explicit initialization of struct i2c_device_id::driver_data to 0
120 lines
5.7 KiB
Makefile
120 lines
5.7 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
subdir-ccflags-$(CONFIG_POWER_SUPPLY_DEBUG) := -DDEBUG
|
|
|
|
power_supply-y := power_supply_core.o
|
|
power_supply-$(CONFIG_SYSFS) += power_supply_sysfs.o
|
|
power_supply-$(CONFIG_LEDS_TRIGGERS) += power_supply_leds.o
|
|
|
|
obj-$(CONFIG_POWER_SUPPLY) += power_supply.o
|
|
obj-$(CONFIG_POWER_SUPPLY_HWMON) += power_supply_hwmon.o
|
|
obj-$(CONFIG_GENERIC_ADC_BATTERY) += generic-adc-battery.o
|
|
|
|
obj-$(CONFIG_APM_POWER) += apm_power.o
|
|
obj-$(CONFIG_AXP20X_POWER) += axp20x_usb_power.o
|
|
obj-$(CONFIG_IP5XXX_POWER) += ip5xxx_power.o
|
|
obj-$(CONFIG_MAX8925_POWER) += max8925_power.o
|
|
obj-$(CONFIG_WM831X_BACKUP) += wm831x_backup.o
|
|
obj-$(CONFIG_WM831X_POWER) += wm831x_power.o
|
|
obj-$(CONFIG_WM8350_POWER) += wm8350_power.o
|
|
obj-$(CONFIG_TEST_POWER) += test_power.o
|
|
|
|
obj-$(CONFIG_BATTERY_88PM860X) += 88pm860x_battery.o
|
|
obj-$(CONFIG_CHARGER_ADP5061) += adp5061.o
|
|
obj-$(CONFIG_BATTERY_ACT8945A) += act8945a_charger.o
|
|
obj-$(CONFIG_BATTERY_AXP20X) += axp20x_battery.o
|
|
obj-$(CONFIG_CHARGER_AXP20X) += axp20x_ac_power.o
|
|
obj-$(CONFIG_BATTERY_CPCAP) += cpcap-battery.o
|
|
obj-$(CONFIG_BATTERY_CW2015) += cw2015_battery.o
|
|
obj-$(CONFIG_BATTERY_DS2760) += ds2760_battery.o
|
|
obj-$(CONFIG_BATTERY_DS2780) += ds2780_battery.o
|
|
obj-$(CONFIG_BATTERY_DS2781) += ds2781_battery.o
|
|
obj-$(CONFIG_BATTERY_DS2782) += ds2782_battery.o
|
|
obj-$(CONFIG_BATTERY_GAUGE_LTC2941) += ltc2941-battery-gauge.o
|
|
obj-$(CONFIG_BATTERY_GOLDFISH) += goldfish_battery.o
|
|
obj-$(CONFIG_BATTERY_LEGO_EV3) += lego_ev3_battery.o
|
|
obj-$(CONFIG_BATTERY_LENOVO_YOGA_C630) += lenovo_yoga_c630_battery.o
|
|
obj-$(CONFIG_BATTERY_PMU) += pmu_battery.o
|
|
obj-$(CONFIG_BATTERY_QCOM_BATTMGR) += qcom_battmgr.o
|
|
obj-$(CONFIG_BATTERY_OLPC) += olpc_battery.o
|
|
obj-$(CONFIG_BATTERY_SAMSUNG_SDI) += samsung-sdi-battery.o
|
|
obj-$(CONFIG_BATTERY_COLLIE) += collie_battery.o
|
|
obj-$(CONFIG_BATTERY_INGENIC) += ingenic-battery.o
|
|
obj-$(CONFIG_BATTERY_IPAQ_MICRO) += ipaq_micro_battery.o
|
|
obj-$(CONFIG_BATTERY_WM97XX) += wm97xx_battery.o
|
|
obj-$(CONFIG_BATTERY_SBS) += sbs-battery.o
|
|
obj-$(CONFIG_CHARGER_SBS) += sbs-charger.o
|
|
obj-$(CONFIG_MANAGER_SBS) += sbs-manager.o
|
|
obj-$(CONFIG_BATTERY_BQ27XXX) += bq27xxx_battery.o
|
|
obj-$(CONFIG_BATTERY_BQ27XXX_I2C) += bq27xxx_battery_i2c.o
|
|
obj-$(CONFIG_BATTERY_BQ27XXX_HDQ) += bq27xxx_battery_hdq.o
|
|
obj-$(CONFIG_BATTERY_DA9030) += da9030_battery.o
|
|
obj-$(CONFIG_BATTERY_DA9052) += da9052-battery.o
|
|
obj-$(CONFIG_CHARGER_DA9150) += da9150-charger.o
|
|
obj-$(CONFIG_BATTERY_DA9150) += da9150-fg.o
|
|
obj-$(CONFIG_BATTERY_MAX17040) += max17040_battery.o
|
|
obj-$(CONFIG_BATTERY_MAX17042) += max17042_battery.o
|
|
obj-$(CONFIG_BATTERY_MAX1720X) += max1720x_battery.o
|
|
obj-$(CONFIG_BATTERY_MAX1721X) += max1721x_battery.o
|
|
obj-$(CONFIG_BATTERY_RT5033) += rt5033_battery.o
|
|
obj-$(CONFIG_CHARGER_RT5033) += rt5033_charger.o
|
|
obj-$(CONFIG_CHARGER_RT9455) += rt9455_charger.o
|
|
obj-$(CONFIG_CHARGER_RT9467) += rt9467-charger.o
|
|
obj-$(CONFIG_CHARGER_RT9471) += rt9471.o
|
|
obj-$(CONFIG_BATTERY_TWL4030_MADC) += twl4030_madc_battery.o
|
|
obj-$(CONFIG_CHARGER_88PM860X) += 88pm860x_charger.o
|
|
obj-$(CONFIG_CHARGER_PCF50633) += pcf50633-charger.o
|
|
obj-$(CONFIG_BATTERY_RX51) += rx51_battery.o
|
|
obj-$(CONFIG_AB8500_BM) += ab8500_bmdata.o ab8500_charger.o ab8500_fg.o ab8500_btemp.o ab8500_chargalg.o
|
|
obj-$(CONFIG_CHARGER_CPCAP) += cpcap-charger.o
|
|
obj-$(CONFIG_CHARGER_ISP1704) += isp1704_charger.o
|
|
obj-$(CONFIG_CHARGER_MAX8903) += max8903_charger.o
|
|
obj-$(CONFIG_CHARGER_TWL4030) += twl4030_charger.o
|
|
obj-$(CONFIG_CHARGER_LP8727) += lp8727_charger.o
|
|
obj-$(CONFIG_CHARGER_LP8788) += lp8788-charger.o
|
|
obj-$(CONFIG_CHARGER_GPIO) += gpio-charger.o
|
|
obj-$(CONFIG_CHARGER_MANAGER) += charger-manager.o
|
|
obj-$(CONFIG_CHARGER_LT3651) += lt3651-charger.o
|
|
obj-$(CONFIG_CHARGER_LTC4162L) += ltc4162-l-charger.o
|
|
obj-$(CONFIG_CHARGER_MAX14577) += max14577_charger.o
|
|
obj-$(CONFIG_CHARGER_DETECTOR_MAX14656) += max14656_charger_detector.o
|
|
obj-$(CONFIG_CHARGER_MAX77650) += max77650-charger.o
|
|
obj-$(CONFIG_CHARGER_MAX77693) += max77693_charger.o
|
|
obj-$(CONFIG_CHARGER_MAX77976) += max77976_charger.o
|
|
obj-$(CONFIG_CHARGER_MAX8997) += max8997_charger.o
|
|
obj-$(CONFIG_CHARGER_MAX8998) += max8998_charger.o
|
|
obj-$(CONFIG_CHARGER_MP2629) += mp2629_charger.o
|
|
obj-$(CONFIG_CHARGER_MT6360) += mt6360_charger.o
|
|
obj-$(CONFIG_CHARGER_MT6370) += mt6370-charger.o
|
|
obj-$(CONFIG_CHARGER_QCOM_SMBB) += qcom_smbb.o
|
|
obj-$(CONFIG_BATTERY_PM8916_BMS_VM) += pm8916_bms_vm.o
|
|
obj-$(CONFIG_CHARGER_PM8916_LBC) += pm8916_lbc.o
|
|
obj-$(CONFIG_CHARGER_BQ2415X) += bq2415x_charger.o
|
|
obj-$(CONFIG_CHARGER_BQ24190) += bq24190_charger.o
|
|
obj-$(CONFIG_CHARGER_BQ24257) += bq24257_charger.o
|
|
obj-$(CONFIG_CHARGER_BQ24735) += bq24735-charger.o
|
|
obj-$(CONFIG_CHARGER_BQ2515X) += bq2515x_charger.o
|
|
obj-$(CONFIG_CHARGER_BQ25890) += bq25890_charger.o
|
|
obj-$(CONFIG_CHARGER_BQ25980) += bq25980_charger.o
|
|
obj-$(CONFIG_CHARGER_BQ256XX) += bq256xx_charger.o
|
|
obj-$(CONFIG_CHARGER_RK817) += rk817_charger.o
|
|
obj-$(CONFIG_CHARGER_SMB347) += smb347-charger.o
|
|
obj-$(CONFIG_CHARGER_TPS65090) += tps65090-charger.o
|
|
obj-$(CONFIG_CHARGER_TPS65217) += tps65217_charger.o
|
|
obj-$(CONFIG_AXP288_FUEL_GAUGE) += axp288_fuel_gauge.o
|
|
obj-$(CONFIG_AXP288_CHARGER) += axp288_charger.o
|
|
obj-$(CONFIG_CHARGER_CROS_CONTROL) += cros_charge-control.o
|
|
obj-$(CONFIG_CHARGER_CROS_USBPD) += cros_usbpd-charger.o
|
|
obj-$(CONFIG_CHARGER_CROS_PCHG) += cros_peripheral_charger.o
|
|
obj-$(CONFIG_CHARGER_SC2731) += sc2731_charger.o
|
|
obj-$(CONFIG_FUEL_GAUGE_SC27XX) += sc27xx_fuel_gauge.o
|
|
obj-$(CONFIG_CHARGER_UCS1002) += ucs1002_power.o
|
|
obj-$(CONFIG_CHARGER_BD99954) += bd99954-charger.o
|
|
obj-$(CONFIG_CHARGER_WILCO) += wilco-charger.o
|
|
obj-$(CONFIG_RN5T618_POWER) += rn5t618_power.o
|
|
obj-$(CONFIG_BATTERY_ACER_A500) += acer_a500_battery.o
|
|
obj-$(CONFIG_BATTERY_SURFACE) += surface_battery.o
|
|
obj-$(CONFIG_CHARGER_SURFACE) += surface_charger.o
|
|
obj-$(CONFIG_BATTERY_UG3105) += ug3105_battery.o
|
|
obj-$(CONFIG_CHARGER_QCOM_SMB2) += qcom_pmi8998_charger.o
|
|
obj-$(CONFIG_FUEL_GAUGE_MM8013) += mm8013.o
|