All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] qcom-scm: Include <linux/err.h> header
@ 2018-12-26 12:06 Fabio Estevam
  2018-12-28 19:31 ` Bjorn Andersson
  2019-01-04 21:15 ` Guenter Roeck
  0 siblings, 2 replies; 16+ messages in thread
From: Fabio Estevam @ 2018-12-26 12:06 UTC (permalink / raw)
  To: robdclark
  Cc: jonathan, dri-devel, bjorn.andersson, andy.gross, shawnguo,
	cphealy

Since commit e6f6d63ed14c ("drm/msm: add headless gpu device for imx5")
the DRM_MSM symbol can be selected by SOC_IMX5 causing the following
error when building imx_v6_v7_defconfig:

In file included from ../drivers/gpu/drm/msm/adreno/a5xx_gpu.c:17:0:
../include/linux/qcom_scm.h: In function 'qcom_scm_set_cold_boot_addr':
../include/linux/qcom_scm.h:73:10: error: 'ENODEV' undeclared (first use in this function)
  return -ENODEV;

Include the <linux/err.h> header file to fix this problem.

Reported-by: kernelci.org bot <bot@kernelci.org>
Fixes: e6f6d63ed14c ("drm/msm: add headless gpu device for imx5")
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 include/linux/qcom_scm.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/linux/qcom_scm.h b/include/linux/qcom_scm.h
index 06996ad4f2bc..ce5a476fd733 100644
--- a/include/linux/qcom_scm.h
+++ b/include/linux/qcom_scm.h
@@ -13,6 +13,7 @@
 #ifndef __QCOM_SCM_H
 #define __QCOM_SCM_H
 
+#include <linux/err.h>
 #include <linux/types.h>
 #include <linux/cpumask.h>
 
-- 
2.17.1

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2019-01-14 20:09 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-26 12:06 [PATCH] qcom-scm: Include <linux/err.h> header Fabio Estevam
2018-12-28 19:31 ` Bjorn Andersson
2018-12-28 15:39   ` Jonathan marek
2018-12-29  0:12     ` Bjorn Andersson
2018-12-28 19:52   ` Fabio Estevam
2018-12-28 19:56     ` Fabio Estevam
2018-12-28 20:08       ` Fabio Estevam
2018-12-28 20:00     ` Fabio Estevam
2018-12-29  0:27     ` Bjorn Andersson
2018-12-29 12:19       ` Fabio Estevam
2018-12-29 19:51         ` Andy Gross
2019-01-14 19:50           ` Amit Kucheria
2019-01-14 19:53             ` Chris Healy
2019-01-14 20:02               ` Fabio Estevam
2019-01-14 20:09                 ` Chris Healy
2019-01-04 21:15 ` Guenter Roeck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.