blob: 74028a18fb7e37cb415454c727797b8131ae01e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* linux/include/linux/mmc/pm.h
*
* Author: Nicolas Pitre
* Copyright: (C) 2009 Marvell Technology Group Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef LINUX_MMC_PM_H
#define LINUX_MMC_PM_H
typedef unsigned int mmc_pm_flag_t;
#define MMC_PM_KEEP_POWER (1 << 0)
#define MMC_PM_WAKE_SDIO_IRQ (1 << 1)
#define MMC_PM_IGNORE_PM_NOTIFY (1 << 2)
#endif
|