Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Copyright (C) 2015 Free Electrons
0004  * Copyright (C) 2015 NextThing Co
0005  *
0006  * Maxime Ripard <maxime.ripard@free-electrons.com>
0007  */
0008 
0009 #ifndef _SUN4I_DRV_H_
0010 #define _SUN4I_DRV_H_
0011 
0012 #include <linux/clk.h>
0013 #include <linux/list.h>
0014 #include <linux/regmap.h>
0015 
0016 struct sun4i_drv {
0017     struct list_head    engine_list;
0018     struct list_head    frontend_list;
0019     struct list_head    tcon_list;
0020 };
0021 
0022 #endif /* _SUN4I_DRV_H_ */