*
  * @param      frame   The allocated frame.
  * @param[in]  size_bytes      The frame size in bytes.
- * @param[in]  contiguous      Allocate memory physically contiguously or not.
  * @return     The error code.
  *
  * Allocate a frame using the given size in bytes.
  * The frame structure is partially null initialized.
  */
-int ia_css_frame_allocate_with_buffer_size(
-    struct ia_css_frame **frame,
-    const unsigned int size_bytes,
-    const bool contiguous);
+int ia_css_frame_allocate_with_buffer_size(struct ia_css_frame **frame,
+                                          const unsigned int size_bytes);
 
 /* @brief Check whether 2 frames are same type
  *
 
        }
 }
 
-int ia_css_frame_allocate_with_buffer_size(
-    struct ia_css_frame **frame,
-    const unsigned int buffer_size_bytes,
-    const bool contiguous)
+int ia_css_frame_allocate_with_buffer_size(struct ia_css_frame **frame,
+                                          const unsigned int buffer_size_bytes)
 {
        /* AM: Body coppied from frame_allocate_with_data(). */
        int err;
        struct ia_css_frame *me = frame_create(0, 0,
                                               IA_CSS_FRAME_FORMAT_NUM,/* Not valid format yet */
-                                              0, 0, contiguous, false);
+                                              0, 0, false, false);
 
        if (!me)
                return -ENOMEM;
 
                                /* allocate new frame */
                                err = ia_css_frame_allocate_with_buffer_size(
                                          &my_css.mipi_frames[port][i],
-                                         my_css.mipi_frame_size[port] * HIVE_ISP_DDR_WORD_BYTES,
-                                         false);
+                                         my_css.mipi_frame_size[port] * HIVE_ISP_DDR_WORD_BYTES);
                                if (err) {
                                        for (j = 0; j < i; j++) {
                                                if (my_css.mipi_frames[port][j]) {