https://github.com/torvalds/linux
Raw File
Tip revision: 7111951b8d4973bda27ff663f2cf18b663d15b48 authored by Linus Torvalds on 29 March 2020, 22:25:41 UTC
Linux 5.6
Tip revision: 7111951
sbi.c
// SPDX-License-Identifier: GPL-2.0-only

#include <linux/init.h>
#include <linux/pm.h>
#include <asm/sbi.h>

static void sbi_power_off(void)
{
	sbi_shutdown();
}

static int __init sbi_init(void)
{
	pm_power_off = sbi_power_off;
	return 0;
}
early_initcall(sbi_init);
back to top