Skip to content

Commit

Permalink
drm/i915: don't use a temp buffer for opregion debugfs file
Browse files Browse the repository at this point in the history
Hasn't been necessary since

commit 115719f
Author: Williams, Dan J <dan.j.williams@intel.com>
Date:   Mon Oct 12 21:12:57 2015 +0000

    i915: switch from acpi_os_ioremap to memremap

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/74664a556a56d0eceb0029bbd77ffc1d771b0628.1450089383.git.jani.nikula@intel.com
  • Loading branch information
Jani Nikula committed Dec 16, 2015
1 parent 8273038 commit 2455a8e
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions drivers/gpu/drm/i915/i915_debugfs.c
Original file line number Diff line number Diff line change
@@ -1842,25 +1842,18 @@ static int i915_opregion(struct seq_file *m, void *unused)
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
struct intel_opregion *opregion = &dev_priv->opregion;
void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL);
int ret;

if (data == NULL)
return -ENOMEM;

ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
goto out;

if (opregion->header) {
memcpy(data, opregion->header, OPREGION_SIZE);
seq_write(m, data, OPREGION_SIZE);
}
if (opregion->header)
seq_write(m, opregion->header, OPREGION_SIZE);

mutex_unlock(&dev->struct_mutex);

out:
kfree(data);
return 0;
}

0 comments on commit 2455a8e

Please sign in to comment.