Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'regulator-fix-v6.9-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator

Pull regulator fix from Mark Brown:
"One simple regualtor fix, fixing module autoloading on tps65132"

* tag 'regulator-fix-v6.9-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator:
regulator: tps65132: Add of_match table

+7
+7
drivers/regulator/tps65132-regulator.c
··· 267 267 }; 268 268 MODULE_DEVICE_TABLE(i2c, tps65132_id); 269 269 270 + static const struct of_device_id __maybe_unused tps65132_of_match[] = { 271 + { .compatible = "ti,tps65132" }, 272 + {}, 273 + }; 274 + MODULE_DEVICE_TABLE(of, tps65132_of_match); 275 + 270 276 static struct i2c_driver tps65132_i2c_driver = { 271 277 .driver = { 272 278 .name = "tps65132", 273 279 .probe_type = PROBE_PREFER_ASYNCHRONOUS, 280 + .of_match_table = of_match_ptr(tps65132_of_match), 274 281 }, 275 282 .probe = tps65132_probe, 276 283 .id_table = tps65132_id,