kernel_samsung_a53x/drivers/misc/samsung/scsc/suspendmon.h
2024-06-15 16:02:09 -03:00

23 lines
586 B
C
Executable file

/****************************************************************************
*
* Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved.
*
****************************************************************************/
/* Baroque suspend/resume handler registration interface */
#ifndef _SUSPENDMON_H
#define _SUSPENDMON_H
#include "mxman.h"
struct suspendmon;
void suspendmon_init(struct suspendmon *suspendmon, struct scsc_mx *mx);
void suspendmon_deinit(struct suspendmon *suspendmon);
struct suspendmon {
struct scsc_mx *mx;
};
#endif /* _SUSPENDMON_H */