diff options
author | 2013-08-07 15:11:52 +0300 | |
---|---|---|
committer | 2013-08-08 14:04:55 +0200 | |
commit | 2b4bd0e0658b98341a899d9550169ffa26c32e39 (patch) | |
tree | a30bac8c6d56bf77a2cdf1be1e6fd2cb52b52f65 | |
parent | drm/i915: Rename hsw_data_buf_partitioning to intel_ddb_partitioning (diff) | |
download | linux-dev-2b4bd0e0658b98341a899d9550169ffa26c32e39.tar.xz linux-dev-2b4bd0e0658b98341a899d9550169ffa26c32e39.zip |
drm/i915: Silence a sparse warning
drivers/gpu/drm/i915/i915_debugfs.c:2136:3: warning: symbol
'i915_debugfs_files' was not declared. Should it be static?
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | drivers/gpu/drm/i915/i915_debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index d2935b4fd695..5d52a23d5662 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -2130,7 +2130,7 @@ static struct drm_info_list i915_debugfs_list[] = { }; #define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list) -struct i915_debugfs_files { +static struct i915_debugfs_files { const char *name; const struct file_operations *fops; } i915_debugfs_files[] = { |