summaryrefslogtreecommitdiff
path: root/drivers/led
diff options
context:
space:
mode:
authorMichal Simek <[email protected]>2024-04-16 08:55:19 +0200
committerTom Rini <[email protected]>2024-04-22 11:01:48 -0600
commit81f3a665ab2a63a31ec7a4d760b0ce8130f62a1d (patch)
treeea17474c16b46c0710b48b1cf875bc608e9c7f9d /drivers/led
parent5a6cf7c5d54769d2500e796702f6d210907ea7e4 (diff)
common: Convert *.c/h from UTF-8 to ASCII enconfing
Convert UTF-8 chars to ASCII in cases where make sense. No Copyright or names are converted. Signed-off-by: Michal Simek <[email protected]> Reviewed-by: Tom Rini <[email protected]> Acked-by: Marek Behún <[email protected]>
Diffstat (limited to 'drivers/led')
-rw-r--r--drivers/led/led_lp5562.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/led/led_lp5562.c b/drivers/led/led_lp5562.c
index 431d7e10ab7..0c5f9bc4300 100644
--- a/drivers/led/led_lp5562.c
+++ b/drivers/led/led_lp5562.c
@@ -125,9 +125,9 @@ static int lp5562_led_reg_update(struct udevice *dev, int regnum,
/*
* Data sheet says "Delay between consecutive I2C writes to
- * ENABLE register (00h) need to be longer than 488 μs
+ * ENABLE register (00h) need to be longer than 488 us
* (typical)." and "Delay between consecutive I2C writes to
- * OP_MODE register need to be longer than 153 μs (typ)."
+ * OP_MODE register need to be longer than 153 us (typ)."
*
* The linux driver does usleep_range(500, 600) and
* usleep_range(200, 300), respectively.