diff options
author | Wolfram Sang <w.sang@pengutronix.de> | 2009-09-18 22:44:43 +0200 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2009-09-22 13:32:44 +0100 |
commit | 2e7e65ce55566fc81036960b00e5e15f5d9578ea (patch) | |
tree | ac7fbbe269a31a018a97c1d20d691fcdc0b91f6f /Documentation | |
parent | 656d0498ea14c51cd8ec00081b5e0662acc72614 (diff) | |
download | op-kernel-dev-2e7e65ce55566fc81036960b00e5e15f5d9578ea.zip op-kernel-dev-2e7e65ce55566fc81036960b00e5e15f5d9578ea.tar.gz |
regulator: fix typos
Fix a couple of typos I found while working with this subsystem.
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/power/regulator/machine.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/power/regulator/machine.txt b/Documentation/power/regulator/machine.txt index ce3487d..63728fe 100644 --- a/Documentation/power/regulator/machine.txt +++ b/Documentation/power/regulator/machine.txt @@ -87,7 +87,7 @@ static struct platform_device regulator_devices[] = { }, }; /* register regulator 1 device */ -platform_device_register(&wm8350_regulator_devices[0]); +platform_device_register(®ulator_devices[0]); /* register regulator 2 device */ -platform_device_register(&wm8350_regulator_devices[1]); +platform_device_register(®ulator_devices[1]); |