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)12int device_suspend(void) 13 { 14 return 0; 15 } 16 device_resume(void)17int device_resume(void) 18 { 19 return 0; 20 } 21