Skip to content

Commit ada1682

Browse files
Bartosz Golaszewskiandersson
authored andcommitted
firmware: qcom: qseecom: add missing include guards
The qseecom header does not contain ifdef guards against multiple inclusion. Add them. Fixes: 00b1248 ("firmware: qcom_scm: Add support for Qualcomm Secure Execution Environment SCM interface") Signed-off-by: Bartosz Golaszewski <[email protected]> Reviewed-by: Maximilian Luz <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Bjorn Andersson <[email protected]>
1 parent c0989f7 commit ada1682

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

include/linux/firmware/qcom/qcom_qseecom.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
*
66
* Copyright (C) 2023 Maximilian Luz <[email protected]>
77
*/
8+
9+
#ifndef __QCOM_QSEECOM_H
10+
#define __QCOM_QSEECOM_H
11+
812
#include <linux/auxiliary_bus.h>
913
#include <linux/types.h>
1014

@@ -44,3 +48,5 @@ static inline int qcom_qseecom_app_send(struct qseecom_client *client, void *req
4448
{
4549
return qcom_scm_qseecom_app_send(client->app_id, req, req_size, rsp, rsp_size);
4650
}
51+
52+
#endif /* __QCOM_QSEECOM_H */

0 commit comments

Comments
 (0)