wok-tiny view memtest/stuff/memtest86+-5.01-array-size.patch @ rev 168

memtest: 386 support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 30 16:35:54 2021 +0000 (2021-04-30)
parents
children
line source
1 --- memtest86+-5.01/controller.c 2013-08-10 02:01:58.000000000 +0000
2 +++ memtest86+-5.01/controller.c 2013-12-12 20:58:12.873555378 +0000
3 @@ -292,7 +292,7 @@
5 /* First, locate the PCI bus where the MCH is located */
7 - for(i = 0; i < sizeof(possible_nhm_bus); i++) {
8 + for(i = 0; i < sizeof(possible_nhm_bus) / sizeof(possible_nhm_bus[0]); i++) {
9 pci_conf_read( possible_nhm_bus[i], 3, 4, 0x00, 2, &vid);
10 pci_conf_read( possible_nhm_bus[i], 3, 4, 0x02, 2, &did);
11 vid &= 0xFFFF;
12 @@ -327,7 +327,7 @@
13 ctrl.mode = ECC_NONE;
15 /* First, locate the PCI bus where the MCH is located */
16 - for(i = 0; i < sizeof(possible_nhm_bus); i++) {
17 + for(i = 0; i < sizeof(possible_nhm_bus) / sizeof(possible_nhm_bus[0]); i++) {
18 pci_conf_read( possible_nhm_bus[i], 3, 4, 0x00, 2, &vid);
19 pci_conf_read( possible_nhm_bus[i], 3, 4, 0x02, 2, &did);
20 vid &= 0xFFFF;