xref: /rk3399_rockchip-uboot/drivers/power/rockchip_pm.c (revision 88949342ad3110302f947d19d4d850222f9fb07b)
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