xref: /dflybsd-src/sys/dev/drm/drm_trace.h (revision 19c468b4dff0c9c2ceaa37f7e1e4cec69674b238)
1*19c468b4SFrançois Tigeot /*
2*19c468b4SFrançois Tigeot  *
3*19c468b4SFrançois Tigeot  * Copyright (c) 2014-2015 François Tigeot
4*19c468b4SFrançois Tigeot  * All Rights Reserved.
5*19c468b4SFrançois Tigeot  *
6*19c468b4SFrançois Tigeot  * Permission is hereby granted, free of charge, to any person obtaining a
7*19c468b4SFrançois Tigeot  * copy of this software and associated documentation files (the
8*19c468b4SFrançois Tigeot  * "Software"), to deal in the Software without restriction, including
9*19c468b4SFrançois Tigeot  * without limitation the rights to use, copy, modify, merge, publish,
10*19c468b4SFrançois Tigeot  * distribute, sub license, and/or sell copies of the Software, and to
11*19c468b4SFrançois Tigeot  * permit persons to whom the Software is furnished to do so, subject to
12*19c468b4SFrançois Tigeot  * the following conditions:
13*19c468b4SFrançois Tigeot  *
14*19c468b4SFrançois Tigeot  * The above copyright notice and this permission notice (including the
15*19c468b4SFrançois Tigeot  * next paragraph) shall be included in all copies or substantial portions
16*19c468b4SFrançois Tigeot  * of the Software.
17*19c468b4SFrançois Tigeot  *
18*19c468b4SFrançois Tigeot  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19*19c468b4SFrançois Tigeot  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20*19c468b4SFrançois Tigeot  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21*19c468b4SFrançois Tigeot  * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22*19c468b4SFrançois Tigeot  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23*19c468b4SFrançois Tigeot  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24*19c468b4SFrançois Tigeot  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25*19c468b4SFrançois Tigeot  *
26*19c468b4SFrançois Tigeot  */
27*19c468b4SFrançois Tigeot 
28*19c468b4SFrançois Tigeot #ifndef _DRM_TRACE_H_
29*19c468b4SFrançois Tigeot #define _DRM_TRACE_H_
30*19c468b4SFrançois Tigeot 
31*19c468b4SFrançois Tigeot #define trace_i915_ppgtt_create(base)
32*19c468b4SFrançois Tigeot #define trace_i915_ppgtt_release(base)
33*19c468b4SFrançois Tigeot 
34*19c468b4SFrançois Tigeot #define trace_drm_vblank_event(a,b)
35*19c468b4SFrançois Tigeot #define trace_drm_vblank_event_delivered(a,b,c)
36*19c468b4SFrançois Tigeot #define trace_drm_vblank_event_queued(a,b,c)
37*19c468b4SFrançois Tigeot 
38*19c468b4SFrançois Tigeot #endif /* _DRM_TRACE_H_ */
39