mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-16 04:05:53 +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.
18 lines
417 B
C
18 lines
417 B
C
#ifndef _CAN_PLATFORM_RCAR_CAN_H_
|
|
#define _CAN_PLATFORM_RCAR_CAN_H_
|
|
|
|
#include <linux/types.h>
|
|
|
|
/* Clock Select Register settings */
|
|
enum CLKR {
|
|
CLKR_CLKP1 = 0, /* Peripheral clock (clkp1) */
|
|
CLKR_CLKP2 = 1, /* Peripheral clock (clkp2) */
|
|
CLKR_CLKEXT = 3 /* Externally input clock */
|
|
};
|
|
|
|
struct rcar_can_platform_data {
|
|
enum CLKR clock_select; /* Clock source select */
|
|
};
|
|
|
|
#endif /* !_CAN_PLATFORM_RCAR_CAN_H_ */
|