hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/drivers/ata/pata_hpt37x.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * Libata driver for the highpoint 37x and 30x UDMA66 ATA controllers.
34 *
....@@ -961,14 +962,14 @@
961962
962963 if ((freq >> 12) != 0xABCDE) {
963964 int i;
964
- u8 sr;
965
+ u16 sr;
965966 u32 total = 0;
966967
967968 pr_warn("BIOS has not set timing clocks\n");
968969
969970 /* This is the process the HPT371 BIOS is reported to use */
970971 for (i = 0; i < 128; i++) {
971
- pci_read_config_byte(dev, 0x78, &sr);
972
+ pci_read_config_word(dev, 0x78, &sr);
972973 total += sr & 0x1FF;
973974 udelay(15);
974975 }