Re: [PATCH 1/3] util/cutils: Introduce freq_to_str() to display Hertz units

2020-09-28 Thread Philippe Mathieu-Daudé
On 9/28/20 9:50 AM, Luc Michel wrote: > Hi Philippe, > > On 11:08 Sun 27 Sep , Philippe Mathieu-Daudé wrote: >> Introduce freq_to_str() to convert frequency values in human >> friendly units using the SI units for Hertz. >> >> Signed-off-by: Philippe Mathieu-Daudé >> --- >> include/qemu/cuti

Re: [PATCH 1/3] util/cutils: Introduce freq_to_str() to display Hertz units

2020-09-28 Thread Luc Michel
Hi Philippe, On 11:08 Sun 27 Sep , Philippe Mathieu-Daudé wrote: > Introduce freq_to_str() to convert frequency values in human > friendly units using the SI units for Hertz. > > Signed-off-by: Philippe Mathieu-Daudé > --- > include/qemu/cutils.h | 12 > util/cutils.c |

[PATCH 1/3] util/cutils: Introduce freq_to_str() to display Hertz units

2020-09-27 Thread Philippe Mathieu-Daudé
Introduce freq_to_str() to convert frequency values in human friendly units using the SI units for Hertz. Signed-off-by: Philippe Mathieu-Daudé --- include/qemu/cutils.h | 12 util/cutils.c | 10 ++ 2 files changed, 22 insertions(+) diff --git a/include/qemu/cutils.