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