diff options
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 93bcb2cb3d35..c8ab947cf359 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -898,8 +898,10 @@ static int ahci_reset_controller(struct ata_host *host) | |||
898 | * AHCI-specific, such as HOST_RESET. | 898 | * AHCI-specific, such as HOST_RESET. |
899 | */ | 899 | */ |
900 | tmp = readl(mmio + HOST_CTL); | 900 | tmp = readl(mmio + HOST_CTL); |
901 | if (!(tmp & HOST_AHCI_EN)) | 901 | if (!(tmp & HOST_AHCI_EN)) { |
902 | writel(tmp | HOST_AHCI_EN, mmio + HOST_CTL); | 902 | tmp |= HOST_AHCI_EN; |
903 | writel(tmp, mmio + HOST_CTL); | ||
904 | } | ||
903 | 905 | ||
904 | /* global controller reset */ | 906 | /* global controller reset */ |
905 | if ((tmp & HOST_RESET) == 0) { | 907 | if ((tmp & HOST_RESET) == 0) { |