clk-s3c2410.h 518 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2020 Krzysztof Kozlowski <[email protected]>
  4. */
  5. #ifndef __LINUX_PLATFORM_DATA_CLK_S3C2410_H_
  6. #define __LINUX_PLATFORM_DATA_CLK_S3C2410_H_
  7. /**
  8. * struct s3c2410_clk_platform_data - platform data for S3C2410 clock driver
  9. *
  10. * @modify_misccr: Function to modify the MISCCR and return the new value
  11. */
  12. struct s3c2410_clk_platform_data {
  13. unsigned int (*modify_misccr)(unsigned int clr, unsigned int chg);
  14. };
  15. #endif /* __LINUX_PLATFORM_DATA_CLK_S3C2410_H_ */