diff options
author | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2015-01-15 15:09:37 +0100 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2015-01-19 09:53:26 -0500 |
commit | c7d7ddee7e24eedde6149eefbcfbfbc7125b9ff0 (patch) | |
tree | a2b9b1404322dc69e75752f4da8a8aece5b73ac3 /drivers/ata/ahci.h | |
parent | 6bd15996071096456578871b286d3e2185bd91e6 (diff) | |
download | linux-c7d7ddee7e24eedde6149eefbcfbfbc7125b9ff0.tar.bz2 |
ata: libahci: Allow using multiple regulators
The current implementation of the libahci allows using multiple PHYs
but not multiple regulators. This patch adds the support of multiple
regulators. Until now it was mandatory to have a PHY under a subnode,
now a port subnode can contain either a regulator or a PHY (or both).
In order to be able to asociate a port with a regulator the port are
now a platform device in the device tree case.
There was only one driver which used directly the regulator field of
the ahci_host_priv structure. To preserve the bisectability the change
in the ahci_imx driver was done in the same patch.
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/ahci.h')
-rw-r--r-- | drivers/ata/ahci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci.h b/drivers/ata/ahci.h index 40f0e34f17af..275358ae0b3f 100644 --- a/drivers/ata/ahci.h +++ b/drivers/ata/ahci.h @@ -333,7 +333,7 @@ struct ahci_host_priv { u32 em_msg_type; /* EM message type */ bool got_runtime_pm; /* Did we do pm_runtime_get? */ struct clk *clks[AHCI_MAX_CLKS]; /* Optional */ - struct regulator *target_pwr; /* Optional */ + struct regulator **target_pwrs; /* Optional */ /* * If platform uses PHYs. There is a 1:1 relation between the port number and * the PHY position in this array. |