Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / include / linux / can / platform / rcar_can.h
1 #ifndef _CAN_PLATFORM_RCAR_CAN_H_
2 #define _CAN_PLATFORM_RCAR_CAN_H_
3
4 #include <linux/types.h>
5
6 /* Clock Select Register settings */
7 enum CLKR {
8         CLKR_CLKP1 = 0, /* Peripheral clock (clkp1) */
9         CLKR_CLKP2 = 1, /* Peripheral clock (clkp2) */
10         CLKR_CLKEXT = 3 /* Externally input clock */
11 };
12
13 struct rcar_can_platform_data {
14         enum CLKR clock_select; /* Clock source select */
15 };
16
17 #endif  /* !_CAN_PLATFORM_RCAR_CAN_H_ */