| 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
| 2 | /* |
| 3 | * Copyright (C) 2021 Angelo Dureghello <angelo@kernel-space.org> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 7 | * version 2 as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | */ |
| 14 | |
| 15 | #ifndef _CAN_PLATFORM_FLEXCAN_H |
| 16 | #define _CAN_PLATFORM_FLEXCAN_H |
| 17 | |
| 18 | struct flexcan_platform_data { |
| 19 | u32 clock_frequency; |
| 20 | u8 clk_src; |
| 21 | }; |
| 22 | |
| 23 | #endif /* _CAN_PLATFORM_FLEXCAN_H */ |
| 24 | |