All of lore.kernel.org
 help / color / mirror / Atom feed
From: Patchwork <patchwork@emeril.freedesktop.org>
To: Imre Deak <imre.deak@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fix TypeC port mode switching (rev8)
Date: Fri, 28 Jun 2019 14:54:35 -0000	[thread overview]
Message-ID: <20190628145435.3157.52595@emeril.freedesktop.org> (raw)
In-Reply-To: <20190628143635.22066-1-imre.deak@intel.com>

== Series Details ==

Series: drm/i915: Fix TypeC port mode switching (rev8)
URL   : https://patchwork.freedesktop.org/series/61590/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
dcb79cfddbf2 drm/i915/icl: Add support to read out the TBT PLL HW state
0dc2581f9c78 drm/i915: Tune down WARNs about TBT AUX power well enabling
4ba22cd821d5 drm/i915: Move the TypeC port handling code to a separate file
-:367: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#367: 
new file mode 100644

total: 0 errors, 1 warnings, 0 checks, 552 lines checked
e81866f7addf drm/i915: Sanitize the terminology used for TypeC port modes
2ef1d45633c5 drm/i915: Don't enable the DDI-IO power in the TypeC TBT-alt mode
b7443e8387a2 drm/i915: Fix the TBT AUX power well enabling
fc564aac61db drm/i915: Use the correct AUX power domain in TypeC TBT-alt mode
a0454ca6a077 drm/i915: Unify the TypeC port notation in debug/error messages
2f90fc87d1e5 drm/i915: Factor out common parts from TypeC port handling functions
36cf52d6d6fb drm/i915: Wait for TypeC PHY complete flag to clear in safe mode
9cbeb64a3a97 drm/i915: Handle the TCCOLD power-down event
420a4449985e drm/i915: Sanitize the TypeC connect/detect sequences
4b34be41516e drm/i915: Fix the TypeC port mode sanitization during loading/resume
8c880b34383b drm/i915: Keep the TypeC port mode fixed for detect/AUX transfers
7fc59c9c8e10 drm/i915: Sanitize the TypeC FIA lane configuration decoding
97b0177df804 drm/i915: Sanitize the shared DPLL reserve/release interface
07b9dd4523f5 drm/i915: Sanitize the shared DPLL find/reference interface
5ad55b12ddce drm/i915/icl: Split getting the DPLLs to port type specific functions
d4a51c8e2698 drm/i915/icl: Reserve all required PLLs for TypeC ports
c7c3d0e4eed3 drm/i915: Keep the TypeC port mode fixed when the port is active
-:519: WARNING:FUNCTION_ARGUMENTS: function definition argument 'struct intel_atomic_state *' should also have an identifier name
#519: FILE: drivers/gpu/drm/i915/intel_drv.h:118:
+	void (*update_prepare)(struct intel_atomic_state *,

-:519: WARNING:FUNCTION_ARGUMENTS: function definition argument 'struct intel_encoder *' should also have an identifier name
#519: FILE: drivers/gpu/drm/i915/intel_drv.h:118:
+	void (*update_prepare)(struct intel_atomic_state *,

-:519: WARNING:FUNCTION_ARGUMENTS: function definition argument 'struct intel_crtc *' should also have an identifier name
#519: FILE: drivers/gpu/drm/i915/intel_drv.h:118:
+	void (*update_prepare)(struct intel_atomic_state *,

-:529: WARNING:FUNCTION_ARGUMENTS: function definition argument 'struct intel_atomic_state *' should also have an identifier name
#529: FILE: drivers/gpu/drm/i915/intel_drv.h:130:
+	void (*update_complete)(struct intel_atomic_state *,

-:529: WARNING:FUNCTION_ARGUMENTS: function definition argument 'struct intel_encoder *' should also have an identifier name
#529: FILE: drivers/gpu/drm/i915/intel_drv.h:130:
+	void (*update_complete)(struct intel_atomic_state *,

-:529: WARNING:FUNCTION_ARGUMENTS: function definition argument 'struct intel_crtc *' should also have an identifier name
#529: FILE: drivers/gpu/drm/i915/intel_drv.h:130:
+	void (*update_complete)(struct intel_atomic_state *,

total: 0 errors, 6 warnings, 0 checks, 440 lines checked
4244124b1755 drm/i915: Add state verification for the TypeC port mode
e4a7353867f9 drm/i915: Remove unneeded disconnect in TypeC legacy port mode
82c41b640fc8 drm/i915: WARN about invalid lane reversal in TBT-alt/DP-alt modes

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2019-06-28 14:54 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-28 14:36 [PATCH v3 00/23] drm/i915: Fix TypeC port mode switching Imre Deak
2019-06-28 14:36 ` [PATCH v3 01/23] drm/i915/icl: Add support to read out the TBT PLL HW state Imre Deak
2019-06-28 14:36 ` [PATCH v3 02/23] drm/i915: Tune down WARNs about TBT AUX power well enabling Imre Deak
2019-06-28 14:36 ` [PATCH v3 03/23] drm/i915: Move the TypeC port handling code to a separate file Imre Deak
2019-06-28 14:36 ` [PATCH v3 04/23] drm/i915: Sanitize the terminology used for TypeC port modes Imre Deak
2019-06-28 14:36 ` [PATCH v3 05/23] drm/i915: Don't enable the DDI-IO power in the TypeC TBT-alt mode Imre Deak
2019-06-28 14:36 ` [PATCH v3 06/23] drm/i915: Fix the TBT AUX power well enabling Imre Deak
2019-06-28 14:36 ` [PATCH v3 07/23] drm/i915: Use the correct AUX power domain in TypeC TBT-alt mode Imre Deak
2019-06-28 14:36 ` [PATCH v3 08/23] drm/i915: Unify the TypeC port notation in debug/error messages Imre Deak
2019-06-28 14:36 ` [PATCH v3 09/23] drm/i915: Factor out common parts from TypeC port handling functions Imre Deak
2019-06-28 14:36 ` [PATCH v3 10/23] drm/i915: Wait for TypeC PHY complete flag to clear in safe mode Imre Deak
2019-06-28 14:36 ` [PATCH v3 11/23] drm/i915: Handle the TCCOLD power-down event Imre Deak
2019-06-28 14:36 ` [PATCH v3 12/23] drm/i915: Sanitize the TypeC connect/detect sequences Imre Deak
2019-06-28 14:36 ` [PATCH v3 13/23] drm/i915: Fix the TypeC port mode sanitization during loading/resume Imre Deak
2019-06-28 14:36 ` [PATCH v3 14/23] drm/i915: Keep the TypeC port mode fixed for detect/AUX transfers Imre Deak
2019-06-28 14:36 ` [PATCH v3 15/23] drm/i915: Sanitize the TypeC FIA lane configuration decoding Imre Deak
2019-06-28 14:36 ` [PATCH v3 16/23] drm/i915: Sanitize the shared DPLL reserve/release interface Imre Deak
2019-06-28 14:36 ` [PATCH v3 17/23] drm/i915: Sanitize the shared DPLL find/reference interface Imre Deak
2019-06-28 14:36 ` [PATCH v3 18/23] drm/i915/icl: Split getting the DPLLs to port type specific functions Imre Deak
2019-06-28 14:36 ` [PATCH v3 19/23] drm/i915/icl: Reserve all required PLLs for TypeC ports Imre Deak
2019-06-28 14:36 ` [PATCH v3 20/23] drm/i915: Keep the TypeC port mode fixed when the port is active Imre Deak
2019-06-28 14:36 ` [PATCH v3 21/23] drm/i915: Add state verification for the TypeC port mode Imre Deak
2019-06-28 14:36 ` [PATCH v3 22/23] drm/i915: Remove unneeded disconnect in TypeC legacy " Imre Deak
2019-06-28 14:36 ` [PATCH v3 23/23] drm/i915: WARN about invalid lane reversal in TBT-alt/DP-alt modes Imre Deak
2019-06-28 14:54 ` Patchwork [this message]
2019-06-28 15:02 ` ✗ Fi.CI.SPARSE: warning for drm/i915: Fix TypeC port mode switching (rev8) Patchwork
2019-06-28 19:04 ` ✓ Fi.CI.BAT: success " Patchwork
2019-06-29  7:03 ` ✓ Fi.CI.IGT: " Patchwork
2019-07-01 13:34   ` Imre Deak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190628145435.3157.52595@emeril.freedesktop.org \
    --to=patchwork@emeril.freedesktop.org \
    --cc=imre.deak@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.