]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - include/linux/can/platform/mcp251x.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-hirsute-kernel.git] / include / linux / can / platform / mcp251x.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
42193e3e
OH
2#ifndef _CAN_PLATFORM_MCP251X_H
3#define _CAN_PLATFORM_MCP251X_H
e0000163
CP
4
5/*
6 *
7 * CAN bus driver for Microchip 251x CAN Controller with SPI Interface
8 *
9 */
10
11#include <linux/spi/spi.h>
12
1ddff7da 13/*
e0000163
CP
14 * struct mcp251x_platform_data - MCP251X SPI CAN controller platform data
15 * @oscillator_frequency: - oscillator frequency in Hz
e0000163
CP
16 */
17
18struct mcp251x_platform_data {
19 unsigned long oscillator_frequency;
e0000163
CP
20};
21
42193e3e 22#endif /* !_CAN_PLATFORM_MCP251X_H */