#!/bin/bash

# first get helper functions (e.g. DEBUG, load_scheme, ...)
. "${0%/*}/helper_functions"
. "${SCRIPT_DIR}/sleep_helper_functions"

set_variables "standby"

## EV_ID="$4" # set in helper_functions

echo "========we are back from suspend, cleaning up.========" >> $LSMOD_LOG
restore_after_sleep "standby"

echo "===============================" >> $LSMOD_LOG
echo "restore_after_standby: finished" >> $LSMOD_LOG

# $SCRIPT_RETURN is called in restore_after_sleep.
EXIT 0
