mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
drm/i915/display: stop returning errors from debugfs registration
Failures to register debugfs should be ignored anyway, so stop propagating errors altogether for clarity and simplicity. No functional changes. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/346562ccef2282ccdbdea54409fab1d2b48f313c.1630327990.git.jani.nikula@intel.com
This commit is contained in:
@@ -12,12 +12,12 @@ struct drm_i915_private;
|
||||
|
||||
#ifdef CONFIG_DEBUG_FS
|
||||
void intel_display_debugfs_register(struct drm_i915_private *i915);
|
||||
int intel_connector_debugfs_add(struct drm_connector *connector);
|
||||
int intel_crtc_debugfs_add(struct drm_crtc *crtc);
|
||||
void intel_connector_debugfs_add(struct drm_connector *connector);
|
||||
void intel_crtc_debugfs_add(struct drm_crtc *crtc);
|
||||
#else
|
||||
static inline void intel_display_debugfs_register(struct drm_i915_private *i915) {}
|
||||
static inline int intel_connector_debugfs_add(struct drm_connector *connector) { return 0; }
|
||||
static inline int intel_crtc_debugfs_add(struct drm_crtc *crtc) { return 0; }
|
||||
static inline void intel_connector_debugfs_add(struct drm_connector *connector) {}
|
||||
static inline void intel_crtc_debugfs_add(struct drm_crtc *crtc) {}
|
||||
#endif
|
||||
|
||||
#endif /* __INTEL_DISPLAY_DEBUGFS_H__ */
|
||||
|
||||
Reference in New Issue
Block a user