mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
drm: i915: fix build when DEBUG_FS is disabled
This clearly had never gotten tested, probably because you need a fairly
minimal configuration in order to disable DEBUG_FS (several other
options select it).
The dummy inline functions that were used for the no-DEBUG_FS case were
missing the argument names in the declarations.
Fixes: 1dac891c1c
("drm/i915: Register debugfs interface last")
Reported-and-tested-by: Jörg Otte <jrg.otte@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
bf0f500bd0
commit
25fd91dc72
1 changed files with 2 additions and 2 deletions
|
@ -3651,8 +3651,8 @@ void i915_debugfs_unregister(struct drm_i915_private *dev_priv);
|
||||||
int i915_debugfs_connector_add(struct drm_connector *connector);
|
int i915_debugfs_connector_add(struct drm_connector *connector);
|
||||||
void intel_display_crc_init(struct drm_device *dev);
|
void intel_display_crc_init(struct drm_device *dev);
|
||||||
#else
|
#else
|
||||||
static inline int i915_debugfs_register(struct drm_i915_private *) {return 0;}
|
static inline int i915_debugfs_register(struct drm_i915_private *dev_priv) {return 0;}
|
||||||
static inline void i915_debugfs_unregister(struct drm_i915_private *) {}
|
static inline void i915_debugfs_unregister(struct drm_i915_private *dev_priv) {}
|
||||||
static inline int i915_debugfs_connector_add(struct drm_connector *connector)
|
static inline int i915_debugfs_connector_add(struct drm_connector *connector)
|
||||||
{ return 0; }
|
{ return 0; }
|
||||||
static inline void intel_display_crc_init(struct drm_device *dev) {}
|
static inline void intel_display_crc_init(struct drm_device *dev) {}
|
||||||
|
|
Loading…
Reference in a new issue