mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
21 lines
485 B
C
21 lines
485 B
C
#ifndef LINUX_MMC_SDHCI_PCI_DATA_H
|
|
#define LINUX_MMC_SDHCI_PCI_DATA_H
|
|
|
|
struct pci_dev;
|
|
|
|
struct sdhci_pci_data {
|
|
struct pci_dev *pdev;
|
|
int slotno;
|
|
int rst_n_gpio; /* Set to -EINVAL if unused */
|
|
int cd_gpio; /* Set to -EINVAL if unused */
|
|
int (*setup)(struct sdhci_pci_data *data);
|
|
void (*cleanup)(struct sdhci_pci_data *data);
|
|
};
|
|
|
|
extern struct sdhci_pci_data *(*sdhci_pci_get_data)(struct pci_dev *pdev,
|
|
int slotno);
|
|
|
|
extern int sdhci_pci_spt_drive_strength;
|
|
|
|
#endif
|