clk-cpu-dyndiv.h 422 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2019 BayLibre, SAS.
  4. * Author: Neil Armstrong <[email protected]>
  5. */
  6. #ifndef __MESON_CLK_CPU_DYNDIV_H
  7. #define __MESON_CLK_CPU_DYNDIV_H
  8. #include <linux/clk-provider.h>
  9. #include "parm.h"
  10. struct meson_clk_cpu_dyndiv_data {
  11. struct parm div;
  12. struct parm dyn;
  13. };
  14. extern const struct clk_ops meson_clk_cpu_dyndiv_ops;
  15. #endif /* __MESON_CLK_CPU_DYNDIV_H */