浏览代码

drm/dsi: Check for CONFIG_OF when defining of_mipi_dsi_device_add()

of_mipi_dsi_device_add() is used only when CONFIG_OF is enabled. It
currently works if OF support is disabled, but this will change when we
add more functionality to it.

Define the original function if CONFIG_OF is enabled and a dummy
function otherwise.

Signed-off-by: Archit Taneja <architt@codeaurora.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Archit Taneja 9 年之前
父节点
当前提交
fc903ebd50
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      drivers/gpu/drm/drm_mipi_dsi.c

+ 8 - 0
drivers/gpu/drm/drm_mipi_dsi.c

@@ -129,6 +129,7 @@ static int mipi_dsi_device_add(struct mipi_dsi_device *dsi)
 	return device_add(&dsi->dev);
 	return device_add(&dsi->dev);
 }
 }
 
 
+#if IS_ENABLED(CONFIG_OF)
 static struct mipi_dsi_device *
 static struct mipi_dsi_device *
 of_mipi_dsi_device_add(struct mipi_dsi_host *host, struct device_node *node)
 of_mipi_dsi_device_add(struct mipi_dsi_host *host, struct device_node *node)
 {
 {
@@ -170,6 +171,13 @@ of_mipi_dsi_device_add(struct mipi_dsi_host *host, struct device_node *node)
 
 
 	return dsi;
 	return dsi;
 }
 }
+#else
+static struct mipi_dsi_device *
+of_mipi_dsi_device_add(struct mipi_dsi_host *host, struct device_node *node)
+{
+	return ERR_PTR(-ENODEV);
+}
+#endif
 
 
 int mipi_dsi_host_register(struct mipi_dsi_host *host)
 int mipi_dsi_host_register(struct mipi_dsi_host *host)
 {
 {