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

regulator: Fix some bitrot in the machine driver documentation

The documentation for the machine driver was rather badly bitrotted,
using pointers to struct device rather than dev_name() to hook up the
consumers. Update to use dev_name().

Reported-by: Philip Rakity <prakity@marvell.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

+4 -4
+4 -4
Documentation/power/regulator/machine.txt
··· 16 16 each regulator. 17 17 18 18 struct regulator_consumer_supply { 19 - struct device *dev; /* consumer */ 19 + const char *dev_name; /* consumer dev_name() */ 20 20 const char *supply; /* consumer supply - e.g. "vcc" */ 21 21 }; 22 22 ··· 24 24 25 25 static struct regulator_consumer_supply regulator1_consumers[] = { 26 26 { 27 - .dev = &platform_consumerB_device.dev, 28 - .supply = "Vcc", 27 + .dev_name = "dev_name(consumer B)", 28 + .supply = "Vcc", 29 29 },}; 30 30 31 31 static struct regulator_consumer_supply regulator2_consumers[] = { 32 32 { 33 - .dev = &platform_consumerA_device.dev, 33 + .dev = "dev_name(consumer A"), 34 34 .supply = "Vcc", 35 35 },}; 36 36