1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2010 Freescale Semiconductor, Inc.
6 #include <linux/kernel.h>
7 #include <linux/suspend.h>
11 static int mxs_suspend_enter(suspend_state_t state
)
24 static const struct platform_suspend_ops mxs_suspend_ops
= {
25 .enter
= mxs_suspend_enter
,
26 .valid
= suspend_valid_only_mem
,
29 void __init
mxs_pm_init(void)
31 suspend_set_ops(&mxs_suspend_ops
);