Commit 42a8ca4c authored by Jani Nikula's avatar Jani Nikula Committed by Daniel Vetter

drm/i915: add yesno utility function

Add a common function to return "yes" or "no" string based on the
argument, and drop the local versions of it.
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Reviewed-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 79e50a4f
...@@ -46,11 +46,6 @@ enum { ...@@ -46,11 +46,6 @@ enum {
PINNED_LIST, PINNED_LIST,
}; };
static const char *yesno(int v)
{
return v ? "yes" : "no";
}
/* As the drm_debugfs_init() routines are called before dev->dev_private is /* As the drm_debugfs_init() routines are called before dev->dev_private is
* allocated we need to hook into the minor for release. */ * allocated we need to hook into the minor for release. */
static int static int
......
...@@ -106,6 +106,11 @@ ...@@ -106,6 +106,11 @@
unlikely(__ret_warn_on); \ unlikely(__ret_warn_on); \
}) })
static inline const char *yesno(bool v)
{
return v ? "yes" : "no";
}
enum pipe { enum pipe {
INVALID_PIPE = -1, INVALID_PIPE = -1,
PIPE_A = 0, PIPE_A = 0,
......
...@@ -30,11 +30,6 @@ ...@@ -30,11 +30,6 @@
#include <generated/utsrelease.h> #include <generated/utsrelease.h>
#include "i915_drv.h" #include "i915_drv.h"
static const char *yesno(int v)
{
return v ? "yes" : "no";
}
static const char *ring_str(int ring) static const char *ring_str(int ring)
{ {
switch (ring) { switch (ring) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment