12 lines
181 B
C
12 lines
181 B
C
|
/*
|
||
|
* Copyright (C) <2018> Intel Corporation
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
#include <acrn_common.h>
|
||
|
|
||
|
int warm_reboot(void)
|
||
|
{
|
||
|
io_write_byte(0x6, 0xcf9);
|
||
|
return 0;
|
||
|
}
|