diff options
author | Ben Widawsky <benjamin.widawsky@intel.com> | 2013-09-01 11:47:57 -0700 |
---|---|---|
committer | Ben Widawsky <benjamin.widawsky@intel.com> | 2013-09-03 15:31:14 -0700 |
commit | a3276e9713a7014bfcd84f29fea4dceb5670f488 (patch) | |
tree | 595f46d52b5e38ea1a386ec56659f77792f5c2ec | |
parent | c42f344b781fef9e8839d439dfa63d7aa76d65ca (diff) |
gem_vmap_blits: Demote warning to note
The warning that vmap isn't supported is useful, but it shouldn't get in
the way of developers (or distros) being able to use -Werror.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
-rw-r--r-- | tests/gem_vmap_blits.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gem_vmap_blits.c b/tests/gem_vmap_blits.c index c09bcfc2..3e8e458b 100644 --- a/tests/gem_vmap_blits.c +++ b/tests/gem_vmap_blits.c @@ -51,7 +51,7 @@ #include "intel_gpu_tools.h" #if !defined(I915_PARAM_HAS_VMAP) -#warning No vmap support in drm, skipping +#pragma message("No vmap support in drm, skipping") int main(int argc, char **argv) { fprintf(stderr, "No vmap support in drm.\n"); |