media: atomisp: drop contiguous argument from frame_allocate_with_data()
authorHans de Goede <hdegoede@redhat.com>
Wed, 15 Jun 2022 20:50:01 +0000 (21:50 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Fri, 8 Jul 2022 15:12:20 +0000 (16:12 +0100)
Drop the contiguous argument from frame_allocate_with_data()
its only caller always passes false.

Link: https://lore.kernel.org/linux-media/20220615205037.16549-5-hdegoede@redhat.com
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/staging/media/atomisp/pci/runtime/frame/src/frame.c

index 7a119d2c9256dfb3a52649d1a79b74948f50ca17..4f9c8b839da2ab1a4d2b66d164463a7f88fc022e 100644 (file)
@@ -77,8 +77,7 @@ static int frame_allocate_with_data(struct ia_css_frame **frame,
        unsigned int height,
        enum ia_css_frame_format format,
        unsigned int padded_width,
-       unsigned int raw_bit_depth,
-       bool contiguous);
+       unsigned int raw_bit_depth);
 
 static struct ia_css_frame *frame_create(unsigned int width,
        unsigned int height,
@@ -137,7 +136,7 @@ int ia_css_frame_allocate(struct ia_css_frame **frame,
                            width, height, format, padded_width, raw_bit_depth);
 
        err = frame_allocate_with_data(frame, width, height, format,
-                                      padded_width, raw_bit_depth, false);
+                                      padded_width, raw_bit_depth);
 
        if ((*frame) && err == 0)
                ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
@@ -773,8 +772,7 @@ static int frame_allocate_with_data(struct ia_css_frame **frame,
        unsigned int height,
        enum ia_css_frame_format format,
        unsigned int padded_width,
-       unsigned int raw_bit_depth,
-       bool contiguous)
+       unsigned int raw_bit_depth)
 {
        int err;
        struct ia_css_frame *me = frame_create(width,
@@ -782,7 +780,7 @@ static int frame_allocate_with_data(struct ia_css_frame **frame,
                                               format,
                                               padded_width,
                                               raw_bit_depth,
-                                              contiguous,
+                                              false,
                                               true);
 
        if (!me)