forked from Qortal/Brooklyn
* 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.
24 lines
382 B
C
24 lines
382 B
C
/*
|
|
* Platform data definitions for Atmel USBA gadget driver.
|
|
*/
|
|
#ifndef __LINUX_USB_USBA_H
|
|
#define __LINUX_USB_USBA_H
|
|
|
|
struct usba_ep_data {
|
|
char *name;
|
|
int index;
|
|
int fifo_size;
|
|
int nr_banks;
|
|
int can_dma;
|
|
int can_isoc;
|
|
};
|
|
|
|
struct usba_platform_data {
|
|
int vbus_pin;
|
|
int vbus_pin_inverted;
|
|
int num_ep;
|
|
struct usba_ep_data ep[0];
|
|
};
|
|
|
|
#endif /* __LINUX_USB_USBA_H */
|