Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.19-rc4 21 lines 432 B view raw
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 17struct mcp251x_platform_data { 18 unsigned long oscillator_frequency; 19}; 20 21#endif /* !_CAN_PLATFORM_MCP251X_H */