OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
include
/
linux
/
mmc
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📄
card.h
10.72 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
core.h
5.98 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
host.h
19.77 KB
11/01/2022 04:52:05 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
11/01/2022 04:52:05 PM
rw-r--r--
📄
sdio_ids.h
2.8 KB
11/01/2022 04:52:05 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: slot-gpio.h
Close
/* * Generic GPIO card-detect helper header * * Copyright (C) 2011, Guennadi Liakhovetski <g.liakhovetski@gmx.de> * * 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 MMC_SLOT_GPIO_H #define MMC_SLOT_GPIO_H #include <linux/types.h> #include <linux/irqreturn.h> struct mmc_host; int mmc_gpio_get_ro(struct mmc_host *host); int mmc_gpio_request_ro(struct mmc_host *host, unsigned int gpio); int mmc_gpio_get_cd(struct mmc_host *host); int mmc_gpio_request_cd(struct mmc_host *host, unsigned int gpio, unsigned int debounce); int mmc_gpiod_request_cd(struct mmc_host *host, const char *con_id, unsigned int idx, bool override_active_level, unsigned int debounce, bool *gpio_invert); int mmc_gpiod_request_ro(struct mmc_host *host, const char *con_id, unsigned int idx, bool override_active_level, unsigned int debounce, bool *gpio_invert); void mmc_gpio_set_cd_isr(struct mmc_host *host, irqreturn_t (*isr)(int irq, void *dev_id)); void mmc_gpiod_request_cd_irq(struct mmc_host *host); bool mmc_can_gpio_cd(struct mmc_host *host); #endif