media: atomisp: drop contiguous argument from frame_create()
authorHans de Goede <hdegoede@redhat.com>
Wed, 15 Jun 2022 20:50:02 +0000 (21:50 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Fri, 8 Jul 2022 15:18:17 +0000 (16:18 +0100)
Drop the contiguous argument from frame_create()
all callers always passes false.

Link: https://lore.kernel.org/linux-media/20220615205037.16549-6-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 4f9c8b839da2ab1a4d2b66d164463a7f88fc022e..af23fbb831d6cf8fbf46884aa2f1eccebf6e3edf 100644 (file)
@@ -84,7 +84,6 @@ static struct ia_css_frame *frame_create(unsigned int width,
        enum ia_css_frame_format format,
        unsigned int padded_width,
        unsigned int raw_bit_depth,
-       bool contiguous,
        bool valid);
 
 static unsigned
@@ -215,7 +214,6 @@ int ia_css_frame_create_from_info(struct ia_css_frame **frame,
                          info->format,
                          info->padded_width,
                          info->raw_bit_depth,
-                         false,
                          false);
        if (!me) {
                ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
@@ -492,7 +490,7 @@ int ia_css_frame_allocate_with_buffer_size(struct ia_css_frame **frame,
        int err;
        struct ia_css_frame *me = frame_create(0, 0,
                                               IA_CSS_FRAME_FORMAT_NUM,/* Not valid format yet */
-                                              0, 0, false, false);
+                                              0, 0, false);
 
        if (!me)
                return -ENOMEM;
@@ -780,7 +778,6 @@ static int frame_allocate_with_data(struct ia_css_frame **frame,
                                               format,
                                               padded_width,
                                               raw_bit_depth,
-                                              false,
                                               true);
 
        if (!me)
@@ -810,7 +807,6 @@ static struct ia_css_frame *frame_create(unsigned int width,
        enum ia_css_frame_format format,
        unsigned int padded_width,
        unsigned int raw_bit_depth,
-       bool contiguous,
        bool valid)
 {
        struct ia_css_frame *me = kvmalloc(sizeof(*me), GFP_KERNEL);
@@ -824,7 +820,7 @@ static struct ia_css_frame *frame_create(unsigned int width,
        me->info.format = format;
        me->info.padded_width = padded_width;
        me->info.raw_bit_depth = raw_bit_depth;
-       me->contiguous = contiguous;
+       me->contiguous = false;
        me->valid = valid;
        me->data_bytes = 0;
        me->data = mmgr_NULL;