All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915: intel_overlay_print_error_state() only needed for debugfs
@ 2010-08-25 21:54 Tobias Doerffel
  2010-08-25 22:42 ` Paul Menzel
  0 siblings, 1 reply; 5+ messages in thread
From: Tobias Doerffel @ 2010-08-25 21:54 UTC (permalink / raw)
  To: intel-gfx

The function intel_overlay_print_error_state() is called from within
i915_error_state() in i915_debufs.c which is only built if
CONFIG_DEBUG_FS is set. When building without this option, seq_printf()
is not declared in intel_overlay.c and the file fails to compile.
Furthermore the whole function is superfluous in this case. Therefore
only build it if CONFIG_DEBUG_FS is set.
---
 drivers/gpu/drm/i915/intel_overlay.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_overlay.c b/drivers/gpu/drm/i915/intel_overlay.c
index 4f00390..74feb89 100644
--- a/drivers/gpu/drm/i915/intel_overlay.c
+++ b/drivers/gpu/drm/i915/intel_overlay.c
@@ -1461,6 +1461,7 @@ err:
 	return NULL;
 }
 
+#ifdef CONFIG_DEBUG_FS
 void
 intel_overlay_print_error_state(struct seq_file *m, struct intel_overlay_error_state *error)
 {
@@ -1513,3 +1514,4 @@ intel_overlay_print_error_state(struct seq_file *m, struct intel_overlay_error_s
 	P(UVSCALEV);
 #undef P
 }
+#endif	/* CONFIG_DEBUG_FS */
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-08-26 10:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-25 21:54 [PATCH] drm/i915: intel_overlay_print_error_state() only needed for debugfs Tobias Doerffel
2010-08-25 22:42 ` Paul Menzel
2010-08-25 23:52   ` [PATCH] drm/i915: intel_overlay_print_error_state() only needed for debugfs (v2) Tobias Doerffel
     [not found]     ` <4C760C89.1000107@gmail.com>
2010-08-26  8:31       ` Tobias Doerffel
2010-08-26 10:02     ` Chris Wilson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.