diff --git a/ddbridge/ddbridge-hw.c b/ddbridge/ddbridge-hw.c index e26bc84..c778962 100644 --- a/ddbridge/ddbridge-hw.c +++ b/ddbridge/ddbridge-hw.c @@ -647,6 +647,18 @@ static const struct ddb_info ddb_s2x_48 = { .temp_num = 1, }; +static const struct ddb_info ddb_s2x_48_b = { + .type = DDB_OCTOPUS_MCI, + .name = "Digital Devices MAX SX8 Basic", + .regmap = &octopus_map, + .port_num = 4, + .i2c_mask = 0x00, + .tempmon_irq = 24, + .mci_ports = 4, + .mci_type = 0, + .temp_num = 1, +}; + static const struct ddb_info ddb_m4 = { .type = DDB_OCTOPUS_MCI, .name = "Digital Devices MAX M4", @@ -781,7 +793,7 @@ static const struct ddb_device_id ddb_device_ids[] = { DDB_DEVID(0x0009, 0x0025, ddb_s2x_48), DDB_DEVID(0x0006, 0x0039, ddb_ctv7), DDB_DEVID(0x000a, 0x0050, ddb_m4), - DDB_DEVID(0x000b, 0x0026, ddb_s2x_48), + DDB_DEVID(0x000b, 0x0026, ddb_s2x_48_b), DDB_DEVID(0x0011, 0x0040, ddb_ci), DDB_DEVID(0x0011, 0x0041, ddb_cis), DDB_DEVID(0x0012, 0x0042, ddb_ci),