3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 14:54:17 +00:00
Scare Crowe 2a709f28fa Auto exploit mitigation feature
* 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.
2021-11-13 09:26:51 +05:00

25 lines
504 B
C

/*
* Ethernet driver for the WIZnet W5x00 chip.
*
* Licensed under the GPL-2 or later.
*/
#ifndef PLATFORM_DATA_WIZNET_H
#define PLATFORM_DATA_WIZNET_H
#include <linux/if_ether.h>
struct wiznet_platform_data {
int link_gpio;
u8 mac_addr[ETH_ALEN];
};
#ifndef CONFIG_WIZNET_BUS_SHIFT
#define CONFIG_WIZNET_BUS_SHIFT 0
#endif
#define W5100_BUS_DIRECT_SIZE (0x8000 << CONFIG_WIZNET_BUS_SHIFT)
#define W5300_BUS_DIRECT_SIZE (0x0400 << CONFIG_WIZNET_BUS_SHIFT)
#endif /* PLATFORM_DATA_WIZNET_H */