From 2e7942e84bb99e0d8b55f7a20982a06a18b5fb29 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Thu, 3 Dec 2020 19:39:01 -0300 Subject: [PATCH] Fix ICS9250-50 frequency table --- src/device/clock_ics9xxx.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/device/clock_ics9xxx.c b/src/device/clock_ics9xxx.c index 05a1a31e5..70b5b4eec 100644 --- a/src/device/clock_ics9xxx.c +++ b/src/device/clock_ics9xxx.c @@ -490,10 +490,10 @@ static const ics9xxx_t ics9xxx_devices[] = { .regs = {0x02, 0x6f, 0xff, 0xff, 0xef, 0xff, 0x06}, .fs_regs = {{-1, -1, -1, -1}, {-1, -1, -1, -1}, {-1, -1, -1, -1}, {0, 7, 1, 7}, {0, 2, 4, 4}}, .frequencies = { - {.bus = 6667, .ram_mult = 1.5, .pci_div = 2}, - {.bus = 10000, .ram_mult = 1, .pci_div = 3}, - {.bus = 13333, .ram_mult = 1, .pci_div = 4}, - {.bus = 13333, .ram_mult = 0.75, .pci_div = 4} + [0] = {.bus = 6667, .ram_mult = 1.5, .pci_div = 2}, + [8] = {.bus = 10000, .ram_mult = 1, .pci_div = 3}, + [16] = {.bus = 13333, .ram_mult = 1, .pci_div = 4}, + [24] = {.bus = 13333, .ram_mult = 0.75, .pci_div = 4} } } };