media: atomisp: Remove binary_supports_input_format
authorNathan Chancellor <natechancellor@gmail.com>
Wed, 27 May 2020 07:11:50 +0000 (09:11 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 11 Jun 2020 16:19:45 +0000 (18:19 +0200)
Clang warns:

drivers/staging/media/atomisp/pci/runtime/binary/src/binary.c:1707:64:
warning: implicit conversion from enumeration type 'const enum
ia_css_frame_format' to different enumeration type 'enum
atomisp_input_format' [-Wenum-conversion]
        binary_supports_input_format(xcandidate, req_in_info->format));
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~             ~~~~~~~~~~~~~^~~~~~

As it turns out, binary_supports_input_format only asserts that
xcandidate is not NULL and just returns true so this call is never
actually made.

There are other functions that are called that assert info is not NULL
so this function actually serves no purpose. Remove it. It can be
brought back if needed later.

Link: https://github.com/ClangBuiltLinux/linux/issues/1036
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/atomisp/pci/runtime/binary/src/binary.c

index fd4ecd6..85e8b45 100644 (file)
@@ -859,18 +859,6 @@ binary_supports_output_format(const struct ia_css_binary_xinfo *info,
        return false;
 }
 
-#ifdef ISP2401
-static bool
-binary_supports_input_format(const struct ia_css_binary_xinfo *info,
-                            enum atomisp_input_format format)
-{
-       assert(info);
-       (void)format;
-
-       return true;
-}
-#endif
-
 static bool
 binary_supports_vf_format(const struct ia_css_binary_xinfo *info,
                          enum ia_css_frame_format format)
@@ -1701,15 +1689,6 @@ ia_css_binary_find(struct ia_css_binary_descr *descr,
                                            binary_supports_output_format(xcandidate, req_bin_out_info->format));
                        continue;
                }
-#ifdef ISP2401
-               if (!binary_supports_input_format(xcandidate, descr->stream_format)) {
-                       ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
-                                           "ia_css_binary_find() [%d] continue: !%d\n",
-                                           __LINE__,
-                                           binary_supports_input_format(xcandidate, req_in_info->format));
-                       continue;
-               }
-#endif
                if (xcandidate->num_output_pins > 1 &&
                    /* in case we have a second output pin, */
                    req_vf_info                   && /* and we need vf output. */