blob: 61485c8ba3a8d1753f0549db52311a3febe1eaff [file] [log] [blame]
Chris Wilson0a793ad2016-04-13 17:35:00 +01001config DRM_I915_WERROR
2 bool "Force GCC to throw an error instead of a warning when compiling"
3 # As this may inadvertently break the build, only allow the user
4 # to shoot oneself in the foot iff they aim really hard
5 depends on EXPERT
6 # We use the dependency on !COMPILE_TEST to not be enabled in
7 # allmodconfig or allyesconfig configurations
8 depends on !COMPILE_TEST
9 default n
10 help
11 Add -Werror to the build flags for (and only for) i915.ko.
12 Do not enable this unless you are writing code for the i915.ko module.
13
14 Recommended for driver developers only.
15
16 If in doubt, say "N".
17
Tvrtko Ursulin643a24b2016-03-03 14:36:43 +000018config DRM_I915_DEBUG
19 bool "Enable additional driver debugging"
20 depends on DRM_I915
21 default n
22 help
23 Choose this option to turn on extra driver debugging that may affect
24 performance but will catch some internal issues.
25
26 Recommended for driver developers only.
27
28 If in doubt, say "N".
29