media: stm32-dcmi: trace the supported fourcc/mbus_code
authorHugues Fruchet <hugues.fruchet@st.com>
Wed, 14 Aug 2019 13:48:51 +0000 (10:48 -0300)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Mon, 19 Aug 2019 15:04:28 +0000 (12:04 -0300)
Add a trace of the set of supported fourcc/mbus_code which
intersect between DCMI and source sub-device.

Signed-off-by: Hugues Fruchet <hugues.fruchet@st.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/stm32/stm32-dcmi.c

index 88c5da87fc8bf105f2ab97d207c180b5297ee45c..480b10fdcb17c06fe7c833ee632837abff816bc1 100644 (file)
@@ -1447,12 +1447,20 @@ static int dcmi_formats_init(struct stm32_dcmi *dcmi)
                        /* Code supported, have we got this fourcc yet? */
                        for (j = 0; j < num_fmts; j++)
                                if (sd_fmts[j]->fourcc ==
-                                               dcmi_formats[i].fourcc)
+                                               dcmi_formats[i].fourcc) {
                                        /* Already available */
+                                       dev_dbg(dcmi->dev, "Skipping fourcc/code: %4.4s/0x%x\n",
+                                               (char *)&sd_fmts[j]->fourcc,
+                                               mbus_code.code);
                                        break;
-                       if (j == num_fmts)
+                               }
+                       if (j == num_fmts) {
                                /* New */
                                sd_fmts[num_fmts++] = dcmi_formats + i;
+                               dev_dbg(dcmi->dev, "Supported fourcc/code: %4.4s/0x%x\n",
+                                       (char *)&sd_fmts[num_fmts - 1]->fourcc,
+                                       sd_fmts[num_fmts - 1]->mbus_code);
+                       }
                }
                mbus_code.index++;
        }