mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-12-18 08:36:21 +01:00
Use the correct name in kernel-doc notation to prevent a kernel-doc warning: am33xx-restart.c:20: warning: expecting prototype for am3xx_restart(). Prototype was for am33xx_restart() instead Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Tony Lindgren <tony@atomide.com> Cc: linux-omap@vger.kernel.org Cc: Russell King <linux@armlinux.org.uk> Cc: linux-arm-kernel@lists.infradead.org Cc: patches@armlinux.org.uk Message-ID: <20240117011004.22669-2-rdunlap@infradead.org> Signed-off-by: Tony Lindgren <tony@atomide.com>
25 lines
641 B
C
25 lines
641 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* am33xx-restart.c - Code common to all AM33xx machines.
|
|
*/
|
|
#include <linux/kernel.h>
|
|
#include <linux/reboot.h>
|
|
|
|
#include "common.h"
|
|
#include "prm.h"
|
|
|
|
/**
|
|
* am33xx_restart - trigger a software restart of the SoC
|
|
* @mode: the "reboot mode", see arch/arm/kernel/{setup,process}.c
|
|
* @cmd: passed from the userspace program rebooting the system (if provided)
|
|
*
|
|
* Resets the SoC. For @cmd, see the 'reboot' syscall in
|
|
* kernel/sys.c. No return value.
|
|
*/
|
|
void am33xx_restart(enum reboot_mode mode, const char *cmd)
|
|
{
|
|
/* TODO: Handle mode and cmd if necessary */
|
|
|
|
omap_prm_reset_system();
|
|
}
|