blob: fb99d3d0a7ff8d40a893c73016ef694faf5b2386 [file] [log] [blame]
/*
* early_suspend_sysfs.h: Early suspend sysfs header file
*
* (C) Copyright 2013 Intel Corporation
* Author: Sathyanarayanan KN(sathyanarayanan.kuppuswamy@intel.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; version 2
* of the License.
*/
#ifndef _LINUX_EARLY_SUSPEND_SYSFS_H
#define _LINUX_EARLY_SUSPEND_SYSFS_H
#define EARLY_SUSPEND_STATUS_LEN 1
#define EARLY_SUSPEND_ON "1"
#define EARLY_SUSPEND_OFF "0"
struct device;
int register_early_suspend_device(struct device *dev);
void unregister_early_suspend_device(struct device *dev);
#endif