OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
include
/
linux
/
mmc
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
card.h
10.72 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
core.h
5.98 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
host.h
19.77 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
mmc.h
16.71 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pm.h
1.02 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sd.h
2.67 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sdhci-pci-data.h
481 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
sdio.h
6.19 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sdio_func.h
5.13 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
sdio_ids.h
2.8 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
sh_mmcif.h
5.62 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
slot-gpio.h
1.19 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: pm.h
Close
/* * 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 /* * These flags are used to describe power management features that * some cards (typically SDIO cards) might wish to benefit from when * the host system is being suspended. There are several layers of * abstractions involved, from the host controller driver, to the MMC core * code, to the SDIO core code, to finally get to the actual SDIO function * driver. This file is therefore used for common definitions shared across * all those layers. */ typedef unsigned int mmc_pm_flag_t; #define MMC_PM_KEEP_POWER (1 << 0) /* preserve card power during suspend */ #define MMC_PM_WAKE_SDIO_IRQ (1 << 1) /* wake up host system on SDIO IRQ assertion */ #endif /* LINUX_MMC_PM_H */