xref: /OK3568_Linux_fs/u-boot/drivers/power/rockchip_pm.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * (C) Copyright 2018 Rockchip Electronics Co., Ltd
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 
7 #include <command.h>
8 #include <common.h>
9 #include <dm.h>
10 #include <power/rockchip_pm.h>
11 
device_suspend(void)12 int device_suspend(void)
13 {
14 	return 0;
15 }
16 
device_resume(void)17 int device_resume(void)
18 {
19 	return 0;
20 }
21