vid-pll-div.h 406 B

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