mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 11:33:28 +02:00
drm/i915/guc: Update GuC messages in intel_guc_ct.c
Use new macros to have common prefix that also include GT#. v2: drop unused helpers Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: John Harrison <John.C.Harrison@Intel.com> Reviewed-by: John Harrison <John.C.Harrison@Intel.com> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230128195907.1837-5-michal.wajdeczko@intel.com
This commit is contained in:
parent
140f9309d2
commit
7388acb253
|
|
@ -11,38 +11,23 @@
|
|||
|
||||
#include "i915_drv.h"
|
||||
#include "intel_guc_ct.h"
|
||||
#include "gt/intel_gt.h"
|
||||
#include "intel_guc_print.h"
|
||||
|
||||
static inline struct intel_guc *ct_to_guc(struct intel_guc_ct *ct)
|
||||
{
|
||||
return container_of(ct, struct intel_guc, ct);
|
||||
}
|
||||
|
||||
static inline struct intel_gt *ct_to_gt(struct intel_guc_ct *ct)
|
||||
{
|
||||
return guc_to_gt(ct_to_guc(ct));
|
||||
}
|
||||
|
||||
static inline struct drm_i915_private *ct_to_i915(struct intel_guc_ct *ct)
|
||||
{
|
||||
return ct_to_gt(ct)->i915;
|
||||
}
|
||||
|
||||
static inline struct drm_device *ct_to_drm(struct intel_guc_ct *ct)
|
||||
{
|
||||
return &ct_to_i915(ct)->drm;
|
||||
}
|
||||
|
||||
#define CT_ERROR(_ct, _fmt, ...) \
|
||||
drm_err(ct_to_drm(_ct), "CT: " _fmt, ##__VA_ARGS__)
|
||||
guc_err(ct_to_guc(_ct), "CT: " _fmt, ##__VA_ARGS__)
|
||||
#ifdef CONFIG_DRM_I915_DEBUG_GUC
|
||||
#define CT_DEBUG(_ct, _fmt, ...) \
|
||||
drm_dbg(ct_to_drm(_ct), "CT: " _fmt, ##__VA_ARGS__)
|
||||
guc_dbg(ct_to_guc(_ct), "CT: " _fmt, ##__VA_ARGS__)
|
||||
#else
|
||||
#define CT_DEBUG(...) do { } while (0)
|
||||
#endif
|
||||
#define CT_PROBE_ERROR(_ct, _fmt, ...) \
|
||||
i915_probe_error(ct_to_i915(ct), "CT: " _fmt, ##__VA_ARGS__)
|
||||
guc_probe_error(ct_to_guc(ct), "CT: " _fmt, ##__VA_ARGS__)
|
||||
|
||||
/**
|
||||
* DOC: CTB Blob
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user