#ifndef __MXSFB_DRV_H__
#define __MXSFB_DRV_H__
#include <drm/drm_crtc.h>
#include <drm/drm_device.h>
#include <drm/drm_encoder.h>
#include <drm/drm_plane.h>
struct clk;
struct mxsfb_devdata { … };
struct mxsfb_drm_private { … };
static inline struct mxsfb_drm_private *
to_mxsfb_drm_private(struct drm_device *drm)
{ … }
void mxsfb_enable_axi_clk(struct mxsfb_drm_private *mxsfb);
void mxsfb_disable_axi_clk(struct mxsfb_drm_private *mxsfb);
int mxsfb_kms_init(struct mxsfb_drm_private *mxsfb);
#endif