Add platform data object for ColdFire architecture. Signed-off-by: Angelo Dureghello <angelo@xxxxxxxxxxxxxxxx> --- include/linux/platform_data/flexcan-mcf.h | 27 +++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 include/linux/platform_data/flexcan-mcf.h diff --git a/include/linux/platform_data/flexcan-mcf.h b/include/linux/platform_data/flexcan-mcf.h new file mode 100644 index 000000000000..71fe1a9df084 --- /dev/null +++ b/include/linux/platform_data/flexcan-mcf.h @@ -0,0 +1,27 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Flexcan options for ColdFire family + * + * Copyright (C) 2021 Angelo Dureghello <angelo@xxxxxxxxxxxxxxxx> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * version 2 as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#ifndef _PLAT_FLEXCAN_MCF_H +#define _PLAT_FLEXCAN_MCF_H + +struct mcf_flexcan_platform_data { + int stop_mode; + int clk_src; + int clock_frequency; + bool big_endian; +}; + +#endif /* _PLAT_FLEXCAN_MCF_H */ -- 2.31.1