lkml.org 
[lkml]   [2021]   [Apr]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v7 2/5] i2c: core: add api to provide frequency mode strings

> +const char *i2c_freq_mode_string(u32 bus_freq_hz)
> +{
> + switch (bus_freq_hz) {
> + case I2C_MAX_STANDARD_MODE_FREQ:
> + return "Standard Mode (100 kHz)";

Sorry, I just noticed just now. Shouldn't we also support lower
frequencies than the maximum one? I.e.

if (bus_freq_hz <= I2C_MAX_STANDARD_MODE_FREQ)
return "Standard Mode (max 100 kHz)";
else if (bus_freq_hz <= ... )

?

[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2021-04-08 22:56    [W:0.048 / U:0.292 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site