diff options
author | Jan Glauber <[email protected]> | 2017-04-05 12:27:39 +0200 |
---|---|---|
committer | Borislav Petkov <[email protected]> | 2017-04-05 14:46:05 +0200 |
commit | 621c4fe3cca5a0bc421916696e0c5e764d0a510b (patch) | |
tree | e1426662fd6af5537a7b507bc5a0e2e35a93b810 | |
parent | 41003396f932d7f027725c7acebb6a7caa41dc3e (diff) |
EDAC, thunderx: Fix L2C MCI interrupt disable
Fix a typo that disabled the MCI interrupts using the wrong bitmask.
Signed-off-by: Jan Glauber <[email protected]>
Cc: David Daney <[email protected]>
Cc: Ralf Baechle <[email protected]>
Cc: Sergey Temerkhanov <[email protected]>
Cc: linux-edac <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Borislav Petkov <[email protected]>
-rw-r--r-- | drivers/edac/thunderx_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/thunderx_edac.c b/drivers/edac/thunderx_edac.c index b5fe6894df5e..f39f4bb7b0f9 100644 --- a/drivers/edac/thunderx_edac.c +++ b/drivers/edac/thunderx_edac.c @@ -2123,7 +2123,7 @@ static void thunderx_l2c_remove(struct pci_dev *pdev) writeq(L2C_CBC_INT_ENA_ALL, l2c->regs + L2C_CBC_INT_ENA_W1C); break; case PCI_DEVICE_ID_THUNDER_L2C_MCI: - writeq(L2C_CBC_INT_ENA_ALL, l2c->regs + L2C_MCI_INT_ENA_W1C); + writeq(L2C_MCI_INT_ENA_ALL, l2c->regs + L2C_MCI_INT_ENA_W1C); break; } |