From: Colin Ian King Date: Tue, 12 Jul 2016 10:59:39 +0000 (+0100) Subject: ide: hpt366: fix incorrect mask when checking at cmd_high_time X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=45969e16f9fe27ed1175b003ef40c47902a09d05;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git ide: hpt366: fix incorrect mask when checking at cmd_high_time According to the HPT366 data sheet, PCI config space dword 0x40-0x43 bits 11:8 specify the primary drive cmd_high_time, however, currently just 3 bits of the 4 are being used because the mask is 0x07 and not 0x0f. Fix the mask, allowing for the 40MHz clock to be detected. Also add in missing space between switch and parenthesis to clean up a checkpatch warning. Signed-off-by: Colin Ian King Acked-by: Sergei Shtylyov Signed-off-by: David S. Miller --- diff --git a/drivers/ide/hpt366.c b/drivers/ide/hpt366.c index f94baadbf424..0ceae5cbd89a 100644 --- a/drivers/ide/hpt366.c +++ b/drivers/ide/hpt366.c @@ -1012,7 +1012,7 @@ static int init_chipset_hpt366(struct pci_dev *dev) pci_read_config_dword(dev, 0x40, &itr1); /* Detect PCI clock by looking at cmd_high_time. */ - switch((itr1 >> 8) & 0x07) { + switch ((itr1 >> 8) & 0x0f) { case 0x09: pci_clk = 40; break;