drm/i915: Fix Kconfig indentation
Adjust indentation from spaces to tab (+optional two spaces) as in coding style with command like: $ sed -e 's/^ /\t/' -i */Kconfig Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20191007173346.9379-1-krzk@kernel.org
This commit is contained in:
Родитель
a1b58ee3cb
Коммит
d30213e533
|
@ -76,7 +76,7 @@ config DRM_I915_CAPTURE_ERROR
|
||||||
This option enables capturing the GPU state when a hang is detected.
|
This option enables capturing the GPU state when a hang is detected.
|
||||||
This information is vital for triaging hangs and assists in debugging.
|
This information is vital for triaging hangs and assists in debugging.
|
||||||
Please report any hang to
|
Please report any hang to
|
||||||
https://bugs.freedesktop.org/enter_bug.cgi?product=DRI
|
https://bugs.freedesktop.org/enter_bug.cgi?product=DRI
|
||||||
for triaging.
|
for triaging.
|
||||||
|
|
||||||
If in doubt, say "Y".
|
If in doubt, say "Y".
|
||||||
|
@ -105,11 +105,11 @@ config DRM_I915_USERPTR
|
||||||
If in doubt, say "Y".
|
If in doubt, say "Y".
|
||||||
|
|
||||||
config DRM_I915_GVT
|
config DRM_I915_GVT
|
||||||
bool "Enable Intel GVT-g graphics virtualization host support"
|
bool "Enable Intel GVT-g graphics virtualization host support"
|
||||||
depends on DRM_I915
|
depends on DRM_I915
|
||||||
depends on 64BIT
|
depends on 64BIT
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Choose this option if you want to enable Intel GVT-g graphics
|
Choose this option if you want to enable Intel GVT-g graphics
|
||||||
virtualization technology host support with integrated graphics.
|
virtualization technology host support with integrated graphics.
|
||||||
With GVT-g, it's possible to have one integrated graphics
|
With GVT-g, it's possible to have one integrated graphics
|
||||||
|
|
|
@ -1,48 +1,48 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0-only
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
config DRM_I915_WERROR
|
config DRM_I915_WERROR
|
||||||
bool "Force GCC to throw an error instead of a warning when compiling"
|
bool "Force GCC to throw an error instead of a warning when compiling"
|
||||||
# As this may inadvertently break the build, only allow the user
|
# As this may inadvertently break the build, only allow the user
|
||||||
# to shoot oneself in the foot iff they aim really hard
|
# to shoot oneself in the foot iff they aim really hard
|
||||||
depends on EXPERT
|
depends on EXPERT
|
||||||
# We use the dependency on !COMPILE_TEST to not be enabled in
|
# We use the dependency on !COMPILE_TEST to not be enabled in
|
||||||
# allmodconfig or allyesconfig configurations
|
# allmodconfig or allyesconfig configurations
|
||||||
depends on !COMPILE_TEST
|
depends on !COMPILE_TEST
|
||||||
select HEADER_TEST
|
select HEADER_TEST
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Add -Werror to the build flags for (and only for) i915.ko.
|
Add -Werror to the build flags for (and only for) i915.ko.
|
||||||
Do not enable this unless you are writing code for the i915.ko module.
|
Do not enable this unless you are writing code for the i915.ko module.
|
||||||
|
|
||||||
Recommended for driver developers only.
|
Recommended for driver developers only.
|
||||||
|
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_DEBUG
|
config DRM_I915_DEBUG
|
||||||
bool "Enable additional driver debugging"
|
bool "Enable additional driver debugging"
|
||||||
depends on DRM_I915
|
depends on DRM_I915
|
||||||
select DEBUG_FS
|
select DEBUG_FS
|
||||||
select PREEMPT_COUNT
|
select PREEMPT_COUNT
|
||||||
select REFCOUNT_FULL
|
select REFCOUNT_FULL
|
||||||
select I2C_CHARDEV
|
select I2C_CHARDEV
|
||||||
select STACKDEPOT
|
select STACKDEPOT
|
||||||
select DRM_DP_AUX_CHARDEV
|
select DRM_DP_AUX_CHARDEV
|
||||||
select X86_MSR # used by igt/pm_rpm
|
select X86_MSR # used by igt/pm_rpm
|
||||||
select DRM_VGEM # used by igt/prime_vgem (dmabuf interop checks)
|
select DRM_VGEM # used by igt/prime_vgem (dmabuf interop checks)
|
||||||
select DRM_DEBUG_MM if DRM=y
|
select DRM_DEBUG_MM if DRM=y
|
||||||
select DRM_DEBUG_SELFTEST
|
select DRM_DEBUG_SELFTEST
|
||||||
select SW_SYNC # signaling validation framework (igt/syncobj*)
|
select SW_SYNC # signaling validation framework (igt/syncobj*)
|
||||||
select DRM_I915_SW_FENCE_DEBUG_OBJECTS
|
select DRM_I915_SW_FENCE_DEBUG_OBJECTS
|
||||||
select DRM_I915_SELFTEST
|
select DRM_I915_SELFTEST
|
||||||
select DRM_I915_DEBUG_RUNTIME_PM
|
select DRM_I915_DEBUG_RUNTIME_PM
|
||||||
select DRM_I915_DEBUG_MMIO
|
select DRM_I915_DEBUG_MMIO
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Choose this option to turn on extra driver debugging that may affect
|
Choose this option to turn on extra driver debugging that may affect
|
||||||
performance but will catch some internal issues.
|
performance but will catch some internal issues.
|
||||||
|
|
||||||
Recommended for driver developers only.
|
Recommended for driver developers only.
|
||||||
|
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_DEBUG_MMIO
|
config DRM_I915_DEBUG_MMIO
|
||||||
bool "Always insert extra checks around mmio access by default"
|
bool "Always insert extra checks around mmio access by default"
|
||||||
|
@ -58,16 +58,16 @@ config DRM_I915_DEBUG_MMIO
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_DEBUG_GEM
|
config DRM_I915_DEBUG_GEM
|
||||||
bool "Insert extra checks into the GEM internals"
|
bool "Insert extra checks into the GEM internals"
|
||||||
default n
|
default n
|
||||||
depends on DRM_I915_WERROR
|
depends on DRM_I915_WERROR
|
||||||
help
|
help
|
||||||
Enable extra sanity checks (including BUGs) along the GEM driver
|
Enable extra sanity checks (including BUGs) along the GEM driver
|
||||||
paths that may slow the system down and if hit hang the machine.
|
paths that may slow the system down and if hit hang the machine.
|
||||||
|
|
||||||
Recommended for driver developers only.
|
Recommended for driver developers only.
|
||||||
|
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_ERRLOG_GEM
|
config DRM_I915_ERRLOG_GEM
|
||||||
bool "Insert extra logging (very verbose) for common GEM errors"
|
bool "Insert extra logging (very verbose) for common GEM errors"
|
||||||
|
@ -110,41 +110,41 @@ config DRM_I915_TRACE_GTT
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_SW_FENCE_DEBUG_OBJECTS
|
config DRM_I915_SW_FENCE_DEBUG_OBJECTS
|
||||||
bool "Enable additional driver debugging for fence objects"
|
bool "Enable additional driver debugging for fence objects"
|
||||||
depends on DRM_I915
|
depends on DRM_I915
|
||||||
select DEBUG_OBJECTS
|
select DEBUG_OBJECTS
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Choose this option to turn on extra driver debugging that may affect
|
Choose this option to turn on extra driver debugging that may affect
|
||||||
performance but will catch some internal issues.
|
performance but will catch some internal issues.
|
||||||
|
|
||||||
Recommended for driver developers only.
|
Recommended for driver developers only.
|
||||||
|
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_SW_FENCE_CHECK_DAG
|
config DRM_I915_SW_FENCE_CHECK_DAG
|
||||||
bool "Enable additional driver debugging for detecting dependency cycles"
|
bool "Enable additional driver debugging for detecting dependency cycles"
|
||||||
depends on DRM_I915
|
depends on DRM_I915
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Choose this option to turn on extra driver debugging that may affect
|
Choose this option to turn on extra driver debugging that may affect
|
||||||
performance but will catch some internal issues.
|
performance but will catch some internal issues.
|
||||||
|
|
||||||
Recommended for driver developers only.
|
Recommended for driver developers only.
|
||||||
|
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_DEBUG_GUC
|
config DRM_I915_DEBUG_GUC
|
||||||
bool "Enable additional driver debugging for GuC"
|
bool "Enable additional driver debugging for GuC"
|
||||||
depends on DRM_I915
|
depends on DRM_I915
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Choose this option to turn on extra driver debugging that may affect
|
Choose this option to turn on extra driver debugging that may affect
|
||||||
performance but will help resolve GuC related issues.
|
performance but will help resolve GuC related issues.
|
||||||
|
|
||||||
Recommended for driver developers only.
|
Recommended for driver developers only.
|
||||||
|
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_SELFTEST
|
config DRM_I915_SELFTEST
|
||||||
bool "Enable selftests upon driver load"
|
bool "Enable selftests upon driver load"
|
||||||
|
@ -177,15 +177,15 @@ config DRM_I915_SELFTEST_BROKEN
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_LOW_LEVEL_TRACEPOINTS
|
config DRM_I915_LOW_LEVEL_TRACEPOINTS
|
||||||
bool "Enable low level request tracing events"
|
bool "Enable low level request tracing events"
|
||||||
depends on DRM_I915
|
depends on DRM_I915
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Choose this option to turn on low level request tracing events.
|
Choose this option to turn on low level request tracing events.
|
||||||
This provides the ability to precisely monitor engine utilisation
|
This provides the ability to precisely monitor engine utilisation
|
||||||
and also analyze the request dependency resolving timeline.
|
and also analyze the request dependency resolving timeline.
|
||||||
|
|
||||||
If in doubt, say "N".
|
If in doubt, say "N".
|
||||||
|
|
||||||
config DRM_I915_DEBUG_VBLANK_EVADE
|
config DRM_I915_DEBUG_VBLANK_EVADE
|
||||||
bool "Enable extra debug warnings for vblank evasion"
|
bool "Enable extra debug warnings for vblank evasion"
|
||||||
|
|
Загрузка…
Ссылка в новой задаче