firmware: qcom: scm: add a missing forward declaration for struct device
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 17 Oct 2023 09:27:19 +0000 (11:27 +0200)
committerBjorn Andersson <andersson@kernel.org>
Sun, 22 Oct 2023 16:14:54 +0000 (09:14 -0700)
We reference struct device in the private scm header but we neither
include linux/device.h nor forward declare it. Fix it.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Andrew Halaney <ahalaney@redhat.com>
Tested-by: Andrew Halaney <ahalaney@redhat.com> # sc8280xp-lenovo-thinkpad-x13s
Link: https://lore.kernel.org/r/20231017092732.19983-3-brgl@bgdev.pl
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
drivers/firmware/qcom/qcom_scm.h

index 7b68fa820495c0c916b0942dd3319c0bf6812963..c88e29051d20f685f9870e518908fadf4fd52446 100644 (file)
@@ -4,6 +4,8 @@
 #ifndef __QCOM_SCM_INT_H
 #define __QCOM_SCM_INT_H
 
+struct device;
+
 enum qcom_scm_convention {
        SMC_CONVENTION_UNKNOWN,
        SMC_CONVENTION_LEGACY,