]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/linux/can/platform/mcp251x.h
dc029dba7a030d384d9389038b6f7d600eee3dbf
[mirror_ubuntu-bionic-kernel.git] / include / linux / can / platform / mcp251x.h
1 #ifndef __CAN_PLATFORM_MCP251X_H__
2 #define __CAN_PLATFORM_MCP251X_H__
3
4 /*
5 *
6 * CAN bus driver for Microchip 251x CAN Controller with SPI Interface
7 *
8 */
9
10 #include <linux/spi/spi.h>
11
12 /*
13 * struct mcp251x_platform_data - MCP251X SPI CAN controller platform data
14 * @oscillator_frequency: - oscillator frequency in Hz
15 */
16
17 struct mcp251x_platform_data {
18 unsigned long oscillator_frequency;
19 };
20
21 #endif /* __CAN_PLATFORM_MCP251X_H__ */