diff options
| author | Nathan Chancellor <natechancellor@gmail.com> | 2019-09-26 22:40:21 -0700 |
|---|---|---|
| committer | Michael Bestas <mkbestas@lineageos.org> | 2020-02-02 01:40:57 +0200 |
| commit | 0afd395f5d7e08d381232a5a1526f3fd0fa5e26c (patch) | |
| tree | 346f41dcd41379af31e61778b38d5e0bb7206cab /include/uapi | |
| parent | 6a98f85fe047f6e19f5372812e3f1caea0db8854 (diff) | |
uapi: video: msm: Fix header guard
Clang warns:
In file included from ../drivers/video/fbdev/msm/mdss_hdcp_1x.c:25:
../include/uapi/video/msm_hdmi_hdcp_mgr.h:1:9: warning:
'_UAPI__HDMI_HDCP_MGR_H' is used as a header guard here, followed by
#define of a different macro [-Wheader-guard]
#ifndef _UAPI__HDMI_HDCP_MGR_H
^~~~~~~~~~~~~~~~~~~~~~
../include/uapi/video/msm_hdmi_hdcp_mgr.h:2:9: note:
'_UAPI__MSM_HDMI_HDCP_MGR_H' is defined here; did you mean
'_UAPI__HDMI_HDCP_MGR_H'?
#define _UAPI__MSM_HDMI_HDCP_MGR_H
^~~~~~~~~~~~~~~~~~~~~~~~~~
_UAPI__HDMI_HDCP_MGR_H
1 warning generated.
Fixes: b32a8b2e782a ("mdss: hdmi: HDCP Topology")
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Diffstat (limited to 'include/uapi')
| -rw-r--r-- | include/uapi/video/msm_hdmi_hdcp_mgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/video/msm_hdmi_hdcp_mgr.h b/include/uapi/video/msm_hdmi_hdcp_mgr.h index 85fa918f2579..1c19d4a15bb7 100644 --- a/include/uapi/video/msm_hdmi_hdcp_mgr.h +++ b/include/uapi/video/msm_hdmi_hdcp_mgr.h @@ -1,4 +1,4 @@ -#ifndef _UAPI__HDMI_HDCP_MGR_H +#ifndef _UAPI__MSM_HDMI_HDCP_MGR_H #define _UAPI__MSM_HDMI_HDCP_MGR_H enum DS_TYPE { /* type of downstream device */ |
