diff options
author | Mikko Perttunen <mperttunen@nvidia.com> | 2014-07-16 11:54:21 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-07-18 17:52:33 -0400 |
commit | 0e38699387fd2fd433618bb67612f3aae676fbae (patch) | |
tree | 1cfab8e09b4535e031ddb970a77470c6a6e28a9f /drivers/ata | |
parent | 4e6d1bbcc2c60e739ecae24314460c4395aafeac (diff) |
ata: ahci_platform: Increase AHCI_MAX_CLKS to 4
The Tegra124 SATA controller requires 4 clocks. Increase this constant
to be able to use them all.
Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata')
-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 05882e4445a6..7137e1bbf04a 100644 --- a/drivers/ata/ahci.h +++ b/drivers/ata/ahci.h @@ -53,7 +53,7 @@ enum { AHCI_MAX_PORTS = 32, - AHCI_MAX_CLKS = 3, + AHCI_MAX_CLKS = 4, AHCI_MAX_SG = 168, /* hardware max is 64K */ AHCI_DMA_BOUNDARY = 0xffffffff, AHCI_MAX_CMDS = 32, |