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/guc: Update name and prototype of i915_guc_log_control
i915_guc_log_control is GuC interface and GuC APIs that are not user facing should be named with "intel_guc" prefix hence we change name to intel_guc_log_control. Also changed the parameter to intel_guc struct. v2: Move log vma check to intel_guc_log_control (Michal) Return -ENODEV when log isn't initialized. (Chris) Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Signed-off-by: Sagar Arun Kamble <sagar.a.kamble@intel.com> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/1516808821-3638-4-git-send-email-sagar.a.kamble@intel.com
This commit is contained in:
parent
70deeaddc6
commit
065dd5ad6c
3 changed files with 7 additions and 7 deletions
|
@ -2471,10 +2471,7 @@ static int i915_guc_log_control_set(void *data, u64 val)
|
|||
if (!HAS_GUC(dev_priv))
|
||||
return -ENODEV;
|
||||
|
||||
if (!dev_priv->guc.log.vma)
|
||||
return -EINVAL;
|
||||
|
||||
return i915_guc_log_control(dev_priv, val);
|
||||
return intel_guc_log_control(&dev_priv->guc, val);
|
||||
}
|
||||
|
||||
DEFINE_SIMPLE_ATTRIBUTE(i915_guc_log_control_fops,
|
||||
|
|
|
@ -637,13 +637,16 @@ void intel_guc_log_destroy(struct intel_guc *guc)
|
|||
i915_vma_unpin_and_release(&guc->log.vma);
|
||||
}
|
||||
|
||||
int i915_guc_log_control(struct drm_i915_private *dev_priv, u64 control_val)
|
||||
int intel_guc_log_control(struct intel_guc *guc, u64 control_val)
|
||||
{
|
||||
struct intel_guc *guc = &dev_priv->guc;
|
||||
struct drm_i915_private *dev_priv = guc_to_i915(guc);
|
||||
bool enable_logging = control_val > 0;
|
||||
u32 verbosity;
|
||||
int ret;
|
||||
|
||||
if (!guc->log.vma)
|
||||
return -ENODEV;
|
||||
|
||||
BUILD_BUG_ON(GUC_LOG_VERBOSITY_MIN);
|
||||
if (control_val > 1 + GUC_LOG_VERBOSITY_MAX)
|
||||
return -EINVAL;
|
||||
|
|
|
@ -64,7 +64,7 @@ void intel_guc_log_destroy(struct intel_guc *guc);
|
|||
void intel_guc_log_init_early(struct intel_guc *guc);
|
||||
int intel_guc_log_relay_create(struct intel_guc *guc);
|
||||
void intel_guc_log_relay_destroy(struct intel_guc *guc);
|
||||
int i915_guc_log_control(struct drm_i915_private *dev_priv, u64 control_val);
|
||||
int intel_guc_log_control(struct intel_guc *guc, u64 control_val);
|
||||
void i915_guc_log_register(struct drm_i915_private *dev_priv);
|
||||
void i915_guc_log_unregister(struct drm_i915_private *dev_priv);
|
||||
|
||||
|
|
Loading…
Reference in a new issue