15.11.2021 14:32, Jon Hunter пишет: > -static int tegra_pmc_restart_notify(struct notifier_block *this, > - unsigned long action, void *data) > +static void tegra_pmc_program_reboot_reason(const char *cmd) > { > - const char *cmd = data; > u32 value; > > + if (!cmd) > + return; There is no explanation of this change in the commit message. Previously scratch register was cleared if command is NULL, now it's not. Why?