flexcan.h 730 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2021 Angelo Dureghello <[email protected]>
  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. #ifndef _CAN_PLATFORM_FLEXCAN_H
  15. #define _CAN_PLATFORM_FLEXCAN_H
  16. struct flexcan_platform_data {
  17. u32 clock_frequency;
  18. u8 clk_src;
  19. };
  20. #endif /* _CAN_PLATFORM_FLEXCAN_H */