From: Christoph Hellwig Date: Fri, 23 Sep 2016 03:23:01 +0000 (-0700) Subject: intel: use correct endianess helpers in show_temp_stats X-Git-Tag: v1.0~46 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2573540070808828fafbb1627b0deabfec2cf805;p=users%2Fsagi%2Fnvme-cli.git intel: use correct endianess helpers in show_temp_stats Signed-off-by: Christoph Hellwig Signed-off-by: Keith Busch --- diff --git a/intel-nvme.c b/intel-nvme.c index e824a2e4..a8a50414 100644 --- a/intel-nvme.c +++ b/intel-nvme.c @@ -129,14 +129,14 @@ static void show_temp_stats(struct intel_temp_stats *stats) { printf(" Intel Temperature Statistics\n"); printf("--------------------------------\n"); - printf("Current temperature : %"PRIu64"\n", (uint64_t)__le64_to_cpu(stats->curr)); - printf("Last critical overtemp flag : %"PRIu64"\n", (uint64_t)__le64_to_cpu(stats->last_overtemp)); - printf("Life critical overtemp flag : %"PRIu64"\n", (uint64_t)__le64_to_cpu(stats->life_overtemp)); - printf("Highest temperature : %"PRIu64"\n", (uint64_t)__le64_to_cpu(stats->highest_temp)); - printf("Lowest temperature : %"PRIu64"\n", (uint64_t)__le64_to_cpu(stats->lowest_temp)); - printf("Max operating temperature : %"PRIu64"\n", (uint64_t)__le64_to_cpu(stats->max_operating_temp)); - printf("Min operating temperature : %"PRIu64"\n", (uint64_t)__le64_to_cpu(stats->min_operating_temp)); - printf("Estimated offset : %"PRIu64"\n", (uint64_t)__le64_to_cpu(stats->est_offset)); + printf("Current temperature : %"PRIu64"\n", (uint64_t)le64_to_cpu(stats->curr)); + printf("Last critical overtemp flag : %"PRIu64"\n", (uint64_t)le64_to_cpu(stats->last_overtemp)); + printf("Life critical overtemp flag : %"PRIu64"\n", (uint64_t)le64_to_cpu(stats->life_overtemp)); + printf("Highest temperature : %"PRIu64"\n", (uint64_t)le64_to_cpu(stats->highest_temp)); + printf("Lowest temperature : %"PRIu64"\n", (uint64_t)le64_to_cpu(stats->lowest_temp)); + printf("Max operating temperature : %"PRIu64"\n", (uint64_t)le64_to_cpu(stats->max_operating_temp)); + printf("Min operating temperature : %"PRIu64"\n", (uint64_t)le64_to_cpu(stats->min_operating_temp)); + printf("Estimated offset : %"PRIu64"\n", (uint64_t)le64_to_cpu(stats->est_offset)); } static int get_temp_stats_log(int argc, char **argv, struct command *cmd, struct plugin *plugin)