Skip to content

Commit 2052287

Browse files
committed
drm/i915/pxp: fix includes for headers in include/drm
Use <> not "" for including headers from include/drm. Signed-off-by: Jani Nikula <[email protected]> Reviewed-by: Rodrigo Vivi <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 5ed597d commit 2052287

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

drivers/gpu/drm/i915/pxp/intel_pxp_session.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
* Copyright(c) 2020, Intel Corporation. All rights reserved.
44
*/
55

6-
#include "drm/i915_drm.h"
6+
#include <drm/i915_drm.h>
7+
78
#include "i915_drv.h"
89

910
#include "intel_pxp.h"

drivers/gpu/drm/i915/pxp/intel_pxp_tee.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
*/
55

66
#include <linux/component.h>
7-
#include "drm/i915_pxp_tee_interface.h"
8-
#include "drm/i915_component.h"
7+
8+
#include <drm/i915_pxp_tee_interface.h>
9+
#include <drm/i915_component.h>
10+
911
#include "i915_drv.h"
1012
#include "intel_pxp.h"
1113
#include "intel_pxp_session.h"

0 commit comments

Comments
 (0)