#include <linux/syscalls.h> /* sys_sync */
#include <linux/wakelock.h>
#include <linux/workqueue.h>
-#include <linux/kallsyms.h>
#include "power.h"
if (pos->suspend != NULL) {
if (debug_mask & DEBUG_VERBOSE)
pr_info("early_suspend: calling %pf\n", pos->suspend);
- if (debug_mask & DEBUG_VERBOSE)
- print_symbol("early_suspend: call %s\n", (unsigned long)pos->suspend);
pos->suspend(pos);
}
}
if (pos->resume != NULL) {
if (debug_mask & DEBUG_VERBOSE)
pr_info("late_resume: calling %pf\n", pos->resume);
- if (debug_mask & DEBUG_VERBOSE)
- print_symbol("late_resume: call %s\n", (unsigned long)pos->resume);
pos->resume(pos);
}