Skip to content

Commit

Permalink
fix fpgainfo events n6000 bel_power_regulator_info (#2997)
Browse files Browse the repository at this point in the history
error in bel_power_regulator_info of N6000 Board
#2996

Signed-off-by: anandaravuri <ananda.ravuri@intel.com>
  • Loading branch information
anandaravuri committed Aug 10, 2023
1 parent 4cb9d59 commit 4c2be6f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libraries/libboard/board_n6000/board_event_log.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,16 @@ static struct bel_sensor_info bel_sensor_info[] = {
static struct bel_sensor_info bel_power_regulator_info[] = {
[BEL_PWR_REG_IR38062_VOUT] = { .label = "IR38062 Voltage", .unit = "mV", .resolution = 1 },
[BEL_PWR_REG_IR38062_IOUT] = { .label = "IR38062 Current", .unit = "mA", .resolution = 1 },
[BEL_PWR_REG_IR38062_VIN] = { .label = "IR38062 Temperature", .unit = "°C", .resolution = 1 },
[BEL_PWR_REG_IR38062_TEMP] = { .label = "IR38062 Input", .unit = "mV", .resolution = 1 },
[BEL_PWR_REG_IR38062_VIN] = { .label = "IR38062 Input", .unit = "mV", .resolution = 1 },
[BEL_PWR_REG_IR38062_TEMP] = { .label = "IR38062 Temperature", .unit = "°C", .resolution = 1 },
[BEL_PWR_REG_IR38063_VOUT] = { .label = "IR38063 Voltage", .unit = "mV", .resolution = 1 },
[BEL_PWR_REG_IR38063_IOUT] = { .label = "IR38063 Current", .unit = "mA", .resolution = 1 },
[BEL_PWR_REG_IR38063_VIN] = { .label = "IR38063 Temperature", .unit = "°C", .resolution = 1 },
[BEL_PWR_REG_IR38063_TEMP] = { .label = "IR38063 Input", .unit = "mV", .resolution = 1 },
[BEL_PWR_REG_IR38063_VIN] = { .label = "IR38063 Input", .unit = "mV", .resolution = 1 },
[BEL_PWR_REG_IR38063_TEMP] = { .label = "IR38063 Temperature", .unit = "°C", .resolution = 1 },
[BEL_PWR_REG_ISL68220_VOUT] = { .label = "ISL68220 Voltage", .unit = "mV", .resolution = 1 },
[BEL_PWR_REG_ISL68220_IOUT] = { .label = "ISL68220 Current", .unit = "mA", .resolution = 1 },
[BEL_PWR_REG_ISL68220_VIN] = { .label = "ISL68220 Temperature", .unit = "°C", .resolution = 1 },
[BEL_PWR_REG_ISL68220_TEMP] = { .label = "ISL68220 Input", .unit = "mV", .resolution = 1 }
[BEL_PWR_REG_ISL68220_VIN] = { .label = "ISL68220 Input", .unit = "mV", .resolution = 1 },
[BEL_PWR_REG_ISL68220_TEMP] = { .label = "ISL68220 Temperature", .unit = "°C", .resolution = 1 }
};

struct pwron_status {
Expand Down

0 comments on commit 4c2be6f

Please sign in to comment.