]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
media: atomisp: get rid of phys event abstractions
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Fri, 12 Nov 2021 11:43:17 +0000 (11:43 +0000)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 16 Nov 2021 14:37:09 +0000 (14:37 +0000)
ia_css_dequeue_event() is just an alias to ia_css_dequeue_psys_event(),
and atomisp_css_dequeue_event() do nothing but calling the event
dequeue logic.

Get rid of both abstractions, calling the function directly.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/atomisp/pci/atomisp_cmd.c
drivers/staging/media/atomisp/pci/atomisp_compat.h
drivers/staging/media/atomisp/pci/atomisp_compat_css20.c
drivers/staging/media/atomisp/pci/ia_css_event_public.h
drivers/staging/media/atomisp/pci/sh_css.c

index 72c61c732d53ca378d1c6675ab1a13b1a764d0a3..4783590969b691897a50c45ba8bc947af7f00e7e 100644 (file)
@@ -1881,7 +1881,7 @@ irqreturn_t atomisp_isr_thread(int irq, void *isp_ptr)
        /*
         * The standard CSS2.0 API tells the following calling sequence of
         * dequeue ready buffers:
-        * while (ia_css_dequeue_event(...)) {
+        * while (ia_css_dequeue_psys_event(...)) {
         *      switch (event.type) {
         *      ...
         *      ia_css_pipe_dequeue_buffer()
index c16eaf3d126f7c75598f6d5bb9c4f71bc75f6b9e..64c1bf0943e64973db250c645202f21e2f17557b 100644 (file)
@@ -133,8 +133,6 @@ void atomisp_css_get_dis_statistics(struct atomisp_sub_device *asd,
                                    struct atomisp_css_buffer *isp_css_buffer,
                                    struct ia_css_isp_dvs_statistics_map *dvs_map);
 
-int atomisp_css_dequeue_event(struct atomisp_css_event *current_event);
-
 void atomisp_css_temp_pipe_to_pipe_id(struct atomisp_sub_device *asd,
                                      struct atomisp_css_event *current_event);
 
index da177a8e78e3247494849cadb7e5103ef7eb047a..7edee293b1329ef4190ae9bf51fc45bf5353216d 100644 (file)
@@ -1633,14 +1633,6 @@ void atomisp_css_get_dis_statistics(struct atomisp_sub_device *asd,
        }
 }
 
-int atomisp_css_dequeue_event(struct atomisp_css_event *current_event)
-{
-       if (ia_css_dequeue_event(&current_event->event))
-               return -EINVAL;
-
-       return 0;
-}
-
 void atomisp_css_temp_pipe_to_pipe_id(struct atomisp_sub_device *asd,
                                      struct atomisp_css_event *current_event)
 {
@@ -4120,7 +4112,7 @@ int atomisp_css_isr_thread(struct atomisp_device *isp,
        bool reset_wdt_timer[MAX_STREAM_NUM] = {false};
        int i;
 
-       while (!atomisp_css_dequeue_event(&current_event)) {
+       while (!ia_css_dequeue_psys_event(&current_event.event)) {
                if (current_event.event.type ==
                    IA_CSS_EVENT_TYPE_FW_ASSERT) {
                        /*
index 08ea801dd5ac31bd73bc4fc439c6a4cbec67a116..76219d741d2e8b7b2d7c24283fbe6a8b0068137e 100644 (file)
@@ -157,21 +157,6 @@ struct ia_css_event {
 int
 ia_css_dequeue_psys_event(struct ia_css_event *event);
 
-/* @brief Dequeue an event from the CSS system.
- *
- * @param[out] event   Pointer to the event struct which will be filled by
- *                      this function if an event is available.
- * @return             -ENODATA if no events are
- *                     available or
- *                     0 otherwise.
- *
- * deprecated{Use ia_css_dequeue_psys_event instead}.
- * Unless the isys event queue is explicitly enabled, this function will
- * dequeue both isys (EOF) and psys events (all others).
- */
-int
-ia_css_dequeue_event(struct ia_css_event *event);
-
 /* @brief Dequeue an ISYS event from the CSS system.
  *
  * @param[out] event   Pointer to the event struct which will be filled by
@@ -182,7 +167,7 @@ ia_css_dequeue_event(struct ia_css_event *event);
  *
  * This function dequeues an event from the ISYS event queue. The queue is
  * between host and the CSS system.
- * Unlike the ia_css_dequeue_event() function, this function can be called
+ * Unlike the ia_css_dequeue_psys_event() function, this function can be called
  * directly from an interrupt service routine (ISR) and it is safe to call
  * this function in parallel with other CSS API functions (but only one
  * call to this function should be in flight at any point in time).
index 79003077f390d353c6529d4fb46e8f61f94b7f33..c714c15c49d23c028e549e2d72b0c9805c0891a8 100644 (file)
@@ -4423,12 +4423,6 @@ static enum ia_css_event_type convert_event_sp_to_host_domain[] = {
        0,                                      /* error if sp passes  SH_CSS_SP_EVENT_NR_OF_TYPES as a valid event. */
 };
 
-int
-ia_css_dequeue_event(struct ia_css_event *event)
-{
-       return ia_css_dequeue_psys_event(event);
-}
-
 int
 ia_css_dequeue_psys_event(struct ia_css_event *event)
 {