Skip to content

Commit

Permalink
drm/i915: Update intel_device_info_runtime_init() parameter
Browse files Browse the repository at this point in the history
As we try to follow object-verb pattern in our functions, update
intel_device_info_runtime_init() parameter from dev_priv to info.

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20171221185334.17396-6-michal.wajdeczko@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20171221215735.30314-5-chris@chris-wilson.co.uk
  • Loading branch information
Michal Wajdeczko authored and Chris Wilson committed Dec 22, 2017
1 parent b978520 commit 6a7e51f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/i915_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ static int i915_driver_init_hw(struct drm_i915_private *dev_priv)
if (i915_inject_load_failure())
return -ENODEV;

intel_device_info_runtime_init(dev_priv);
intel_device_info_runtime_init(mkwrite_device_info(dev_priv));

intel_sanitize_options(dev_priv);

Expand Down
10 changes: 7 additions & 3 deletions drivers/gpu/drm/i915/intel_device_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,10 @@ static u32 read_timestamp_frequency(struct drm_i915_private *dev_priv)
return 0;
}

/*
/**
* intel_device_info_runtime_init - initialize runtime info
* @info: intel device info struct
*
* Determine various intel_device_info fields at runtime.
*
* Use it when either:
Expand All @@ -444,9 +447,10 @@ static u32 read_timestamp_frequency(struct drm_i915_private *dev_priv)
* - after the PCH has been detected,
* - before the first usage of the fields it can tweak.
*/
void intel_device_info_runtime_init(struct drm_i915_private *dev_priv)
void intel_device_info_runtime_init(struct intel_device_info *info)
{
struct intel_device_info *info = mkwrite_device_info(dev_priv);
struct drm_i915_private *dev_priv =
container_of(info, struct drm_i915_private, info);
enum pipe pipe;

if (INTEL_GEN(dev_priv) >= 10) {
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/intel_device_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ static inline unsigned int sseu_subslice_total(const struct sseu_dev_info *sseu)

const char *intel_platform_name(enum intel_platform platform);

void intel_device_info_runtime_init(struct drm_i915_private *dev_priv);
void intel_device_info_runtime_init(struct intel_device_info *info);
void intel_device_info_dump(const struct intel_device_info *info,
struct drm_printer *p);
void intel_device_info_dump_flags(const struct intel_device_info *info,
Expand Down

0 comments on commit 6a7e51f

Please sign in to comment.