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 <bartosz.golaszewski@linaro.org> Reviewed-by: Maximilian Luz <luzmaximilian@gmail.com> Link: https://lore.kernel.org/r/20231004185732.98621-1-brgl@bgdev.pl Signed-off-by: Bjorn Andersson <andersson@kernel.org>
1 parent c0989f7 commit ada1682

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

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 <luzmaximilian@gmail.com>
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)