Merge tag 'v2026.01-rc3' into next

Prepare v2026.01-rc3
This commit is contained in:
Tom Rini
2025-11-24 09:34:29 -06:00
145 changed files with 2519 additions and 3976 deletions

View File

@@ -10,6 +10,7 @@
#include <command.h>
#include <console.h>
#include <div64.h>
#include <led.h>
#if CONFIG_IS_ENABLED(CMD_MTD_OTP)
#include <hexdump.h>
@@ -595,10 +596,10 @@ static int do_mtd_io(struct cmd_tbl *cmdtp, int flag, int argc,
if (benchmark && bench_start) {
bench_end = timer_get_us();
speed = (len * 1000000) / (bench_end - bench_start);
speed = lldiv(len * 1000000, bench_end - bench_start);
printf("%s speed: %lukiB/s\n",
read ? "Read" : "Write",
(unsigned long)(speed / 1024));
(unsigned long)(speed >> 10));
}
led_activity_off();