2015-01-15 16:15:51 +01:00
|
|
|
Cleanup and compiler issues only, no functional change
|
|
|
|
|
|
|
|
Changes partly very old and not possible to find the original author.
|
|
|
|
|
|
|
|
Signed-off-by: Thomas Renninger <trenn@suse.de>
|
|
|
|
|
2016-05-03 15:21:12 +02:00
|
|
|
Index: ipmitool-1.8.17/lib/ipmi_ekanalyzer.c
|
2014-02-17 16:39:37 +01:00
|
|
|
===================================================================
|
2016-05-03 15:21:12 +02:00
|
|
|
--- ipmitool-1.8.17.orig/lib/ipmi_ekanalyzer.c 2016-05-01 10:03:39.000000000 +0200
|
|
|
|
+++ ipmitool-1.8.17/lib/ipmi_ekanalyzer.c 2016-05-03 14:09:46.242458958 +0200
|
|
|
|
@@ -3363,7 +3363,7 @@ ipmi_ek_display_board_p2p_record(struct
|
2015-01-15 16:15:51 +01:00
|
|
|
printf("\n");
|
|
|
|
offset += sizeof(struct fru_picmgext_guid);
|
|
|
|
}
|
|
|
|
- for (offset;
|
|
|
|
+ for (;
|
|
|
|
offset < record->header.len;
|
|
|
|
offset += sizeof(struct fru_picmgext_link_desc)) {
|
|
|
|
/* to solve little endian/big endian problem */
|
2016-05-03 15:21:12 +02:00
|
|
|
@@ -3522,7 +3522,7 @@ ipmi_ek_display_radial_ipmb0_record(stru
|
2015-01-15 16:15:51 +01:00
|
|
|
if (record->data[offset] < 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
- for (offset; offset < record->header.len;) {
|
|
|
|
+ for (; offset < record->header.len;) {
|
|
|
|
unsigned char entry_count = 0;
|
|
|
|
printf(" IPMB-0 Hub Descriptor\n");
|
|
|
|
printf("\tHardware Address: 0x%02x\n",
|
2016-05-03 15:21:12 +02:00
|
|
|
@@ -3980,7 +3980,7 @@ ipmi_ek_display_clock_config_record(stru
|
2015-01-15 16:15:51 +01:00
|
|
|
(feature & 1) ? "Source" : "Receiver");
|
|
|
|
printf("\tFamily: 0x%02x - AccLVL: 0x%02x\n",
|
|
|
|
family, accuracy);
|
|
|
|
- printf("\tFRQ: %-9ld - min: %-9ld - max: %-9ld\n",
|
|
|
|
+ printf("\tFRQ: %-9lu - min: %-9lu - max: %-9lu\n",
|
|
|
|
freq, min_freq, max_freq);
|
|
|
|
}
|
|
|
|
printf("\n");
|
2016-05-03 15:21:12 +02:00
|
|
|
Index: ipmitool-1.8.17/lib/ipmi_picmg.c
|
2014-02-17 16:39:37 +01:00
|
|
|
===================================================================
|
2016-05-03 15:21:12 +02:00
|
|
|
--- ipmitool-1.8.17.orig/lib/ipmi_picmg.c 2016-05-01 10:03:39.000000000 +0200
|
|
|
|
+++ ipmitool-1.8.17/lib/ipmi_picmg.c 2016-05-03 14:09:46.250459411 +0200
|
2016-02-25 14:26:31 +01:00
|
|
|
@@ -855,7 +855,7 @@ ipmi_picmg_portstate_get(struct ipmi_int
|
2010-03-05 16:31:33 +01:00
|
|
|
}
|
|
|
|
else if (d->type >= 0x06 && d->type <= 0xef)
|
|
|
|
{
|
2013-02-28 14:24:25 +01:00
|
|
|
- printf("Reserved\n");
|
2010-03-05 16:31:33 +01:00
|
|
|
+ printf("Reserved %d\n",d->type);
|
|
|
|
}
|
|
|
|
else if (d->type >= 0xf0 && d->type <= 0xfe)
|
|
|
|
{
|
2016-05-03 15:21:12 +02:00
|
|
|
@@ -1707,7 +1707,7 @@ ipmi_picmg_clk_get(struct ipmi_intf * in
|
2013-02-28 14:24:25 +01:00
|
|
|
oemval2str( rsp->data[3], rsp->data[4],
|
|
|
|
picmg_clk_accuracy_vals));
|
|
|
|
|
|
|
|
- printf(" - Freq: %ld\n", freq);
|
|
|
|
+ printf(" - Freq: %lu\n", freq);
|
|
|
|
}
|
|
|
|
}
|
2010-03-05 16:31:33 +01:00
|
|
|
}
|
2016-05-03 15:21:12 +02:00
|
|
|
Index: ipmitool-1.8.17/lib/ipmi_sdr.c
|
2014-02-17 16:39:37 +01:00
|
|
|
===================================================================
|
2016-05-03 15:21:12 +02:00
|
|
|
--- ipmitool-1.8.17.orig/lib/ipmi_sdr.c 2016-05-01 10:03:39.000000000 +0200
|
|
|
|
+++ ipmitool-1.8.17/lib/ipmi_sdr.c 2016-05-03 14:09:46.258459865 +0200
|
|
|
|
@@ -53,6 +53,7 @@
|
2013-02-28 14:24:25 +01:00
|
|
|
#include <ipmitool/ipmi_entity.h>
|
|
|
|
#include <ipmitool/ipmi_constants.h>
|
|
|
|
#include <ipmitool/ipmi_strings.h>
|
|
|
|
+#include <ipmitool/ipmi_sensor.h>
|
2010-03-05 16:31:33 +01:00
|
|
|
|
2013-02-28 14:24:25 +01:00
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|