sun4i_drv.h 445 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Copyright (C) 2015 Free Electrons
  4. * Copyright (C) 2015 NextThing Co
  5. *
  6. * Maxime Ripard <maxime.ripard@free-electrons.com>
  7. */
  8. #ifndef _SUN4I_DRV_H_
  9. #define _SUN4I_DRV_H_
  10. #include <linux/clk.h>
  11. #include <linux/list.h>
  12. #include <linux/regmap.h>
  13. struct sun4i_drv {
  14. struct list_head engine_list;
  15. struct list_head frontend_list;
  16. struct list_head tcon_list;
  17. };
  18. #endif /* _SUN4I_DRV_H_ */