blob: d44fcae274ff2a0877c06091bfaafe68e0cc8d6d [file] [log] [blame]
Oliver Hartkopp42193e32014-05-15 20:31:56 +02001#ifndef _CAN_PLATFORM_MCP251X_H
2#define _CAN_PLATFORM_MCP251X_H
Christian Pellegrine0000162009-11-02 23:07:00 +00003
4/*
5 *
6 * CAN bus driver for Microchip 251x CAN Controller with SPI Interface
7 *
8 */
9
10#include <linux/spi/spi.h>
11
Alexander Shiyan1ddff7d2013-08-19 15:39:19 +040012/*
Christian Pellegrine0000162009-11-02 23:07:00 +000013 * struct mcp251x_platform_data - MCP251X SPI CAN controller platform data
14 * @oscillator_frequency: - oscillator frequency in Hz
Christian Pellegrine0000162009-11-02 23:07:00 +000015 */
16
17struct mcp251x_platform_data {
18 unsigned long oscillator_frequency;
Christian Pellegrine0000162009-11-02 23:07:00 +000019};
20
Oliver Hartkopp42193e32014-05-15 20:31:56 +020021#endif /* !_CAN_PLATFORM_MCP251X_H */