Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef33ef7f authored by Hariram Purushothaman's avatar Hariram Purushothaman
Browse files

msm: camera: Fix unterminated of_device_id table



Add a NULL table entry at end for msm, ispif and
msm_generic_buf_mgr device tree match tables.

Change-Id: I05f08c77a8a25112cd17955e98018ac88b7a834c
CRs-Fixed: 582110
Signed-off-by: default avatarHariram Purushothaman <hpurus@codeaurora.org>
parent b172e2dd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1197,6 +1197,7 @@ error_sd_register:

static const struct of_device_id msm_ispif_dt_match[] = {
	{.compatible = "qcom,ispif"},
	{}
};

MODULE_DEVICE_TABLE(of, msm_ispif_dt_match);
+1 −0
Original line number Diff line number Diff line
@@ -1046,6 +1046,7 @@ probe_end:

static const struct of_device_id msm_dt_match[] = {
	{.compatible = "qcom,msm-cam"},
	{}
}

MODULE_DEVICE_TABLE(of, msm_dt_match);
+1 −0
Original line number Diff line number Diff line
@@ -139,6 +139,7 @@ static const struct v4l2_subdev_ops msm_buf_mngr_subdev_ops = {

static const struct of_device_id msm_buf_mngr_dt_match[] = {
	{.compatible = "qcom,msm_buf_mngr"},
	{}
};

static int __init msm_buf_mngr_init(void)