diff options
Diffstat (limited to 'drivers/gpu/drm/msm/dp/dp_debug.h')
| -rw-r--r-- | drivers/gpu/drm/msm/dp/dp_debug.h | 38 | 
1 files changed, 11 insertions, 27 deletions
diff --git a/drivers/gpu/drm/msm/dp/dp_debug.h b/drivers/gpu/drm/msm/dp/dp_debug.h index 9b3b2e702f65..7e1aa892fc09 100644 --- a/drivers/gpu/drm/msm/dp/dp_debug.h +++ b/drivers/gpu/drm/msm/dp/dp_debug.h @@ -9,22 +9,6 @@  #include "dp_panel.h"  #include "dp_link.h" -/** - * struct dp_debug - * @debug_en: specifies whether debug mode enabled - * @vdisplay: used to filter out vdisplay value - * @hdisplay: used to filter out hdisplay value - * @vrefresh: used to filter out vrefresh value - * @tpg_state: specifies whether tpg feature is enabled - */ -struct dp_debug { -	bool debug_en; -	int aspect_ratio; -	int vdisplay; -	int hdisplay; -	int vrefresh; -}; -  #if defined(CONFIG_DEBUG_FS)  /** @@ -41,22 +25,22 @@ struct dp_debug {   * This function sets up the debug module and provides a way   * for debugfs input to be communicated with existing modules   */ -struct dp_debug *dp_debug_get(struct device *dev, struct dp_panel *panel, -		struct dp_link *link, -		struct drm_connector *connector, -		struct dentry *root, -		bool is_edp); +int dp_debug_init(struct device *dev, struct dp_panel *panel, +		  struct dp_link *link, +		  struct drm_connector *connector, +		  struct dentry *root, +		  bool is_edp);  #else  static inline -struct dp_debug *dp_debug_get(struct device *dev, struct dp_panel *panel, -		struct dp_link *link, -		struct drm_connector *connector, -		struct dentry *root, -		bool is_edp) +int dp_debug_init(struct device *dev, struct dp_panel *panel, +		  struct dp_link *link, +		  struct drm_connector *connector, +		  struct dentry *root, +		  bool is_edp)  { -	return ERR_PTR(-EINVAL); +	return -EINVAL;  }  #endif /* defined(CONFIG_DEBUG_FS) */  |