diff options
author | Mikko Perttunen <mperttunen@nvidia.com> | 2014-07-16 04:54:21 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-07-18 17:52:33 -0400 |
commit | 0e38699387fd2fd433618bb67612f3aae676fbae (patch) | |
tree | 1cfab8e09b4535e031ddb970a77470c6a6e28a9f /drivers/ata/ahci.h | |
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/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 05882e4445a6..7137e1bbf04a 100644 --- a/drivers/ata/ahci.h +++ b/drivers/ata/ahci.h | |||
@@ -53,7 +53,7 @@ | |||
53 | 53 | ||
54 | enum { | 54 | enum { |
55 | AHCI_MAX_PORTS = 32, | 55 | AHCI_MAX_PORTS = 32, |
56 | AHCI_MAX_CLKS = 3, | 56 | AHCI_MAX_CLKS = 4, |
57 | AHCI_MAX_SG = 168, /* hardware max is 64K */ | 57 | AHCI_MAX_SG = 168, /* hardware max is 64K */ |
58 | AHCI_DMA_BOUNDARY = 0xffffffff, | 58 | AHCI_DMA_BOUNDARY = 0xffffffff, |
59 | AHCI_MAX_CMDS = 32, | 59 | AHCI_MAX_CMDS = 32, |