Commit 3881a5a7 authored by Philipp Gerlesberger's avatar Philipp Gerlesberger Committed by Mauro Carvalho Chehab

media: atomisp: Write function decleration in one line

CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
WARNING:LEADING_SPACE: please, no spaces at the start of a line
Avoid these errors by writing the function decleration in one line.

Link: https://lore.kernel.org/linux-media/20201214110358.7102-12-Philipp.Gerlesberger@fau.deCo-developed-by: default avatarAndrey Khlopkov <ij72uhux@stud.informatik.uni-erlangen.de>
Signed-off-by: default avatarAndrey Khlopkov <ij72uhux@stud.informatik.uni-erlangen.de>
Signed-off-by: default avatarPhilipp Gerlesberger <Philipp.Gerlesberger@fau.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent fc42aa47
...@@ -22,9 +22,7 @@ ...@@ -22,9 +22,7 @@
/***************************************************************************** /*****************************************************************************
* Queue Public APIs * Queue Public APIs
*****************************************************************************/ *****************************************************************************/
int ia_css_queue_local_init( int ia_css_queue_local_init(ia_css_queue_t *qhandle, ia_css_queue_local_t *desc)
ia_css_queue_t *qhandle,
ia_css_queue_local_t *desc)
{ {
if (NULL == qhandle || NULL == desc if (NULL == qhandle || NULL == desc
|| NULL == desc->cb_elems || NULL == desc->cb_desc) { || NULL == desc->cb_elems || NULL == desc->cb_desc) {
...@@ -43,9 +41,7 @@ int ia_css_queue_local_init( ...@@ -43,9 +41,7 @@ int ia_css_queue_local_init(
return 0; return 0;
} }
int ia_css_queue_remote_init( int ia_css_queue_remote_init(ia_css_queue_t *qhandle, ia_css_queue_remote_t *desc)
ia_css_queue_t *qhandle,
ia_css_queue_remote_t *desc)
{ {
if (NULL == qhandle || NULL == desc) { if (NULL == qhandle || NULL == desc) {
/* Invalid parameters, return error*/ /* Invalid parameters, return error*/
...@@ -69,8 +65,7 @@ int ia_css_queue_remote_init( ...@@ -69,8 +65,7 @@ int ia_css_queue_remote_init(
return 0; return 0;
} }
int ia_css_queue_uninit( int ia_css_queue_uninit(ia_css_queue_t *qhandle)
ia_css_queue_t *qhandle)
{ {
if (!qhandle) if (!qhandle)
return -EINVAL; return -EINVAL;
...@@ -84,9 +79,7 @@ int ia_css_queue_uninit( ...@@ -84,9 +79,7 @@ int ia_css_queue_uninit(
return 0; return 0;
} }
int ia_css_queue_enqueue( int ia_css_queue_enqueue(ia_css_queue_t *qhandle, uint32_t item)
ia_css_queue_t *qhandle,
uint32_t item)
{ {
int error = 0; int error = 0;
...@@ -143,9 +136,7 @@ int ia_css_queue_enqueue( ...@@ -143,9 +136,7 @@ int ia_css_queue_enqueue(
return 0; return 0;
} }
int ia_css_queue_dequeue( int ia_css_queue_dequeue(ia_css_queue_t *qhandle, uint32_t *item)
ia_css_queue_t *qhandle,
uint32_t *item)
{ {
int error = 0; int error = 0;
...@@ -200,9 +191,7 @@ int ia_css_queue_dequeue( ...@@ -200,9 +191,7 @@ int ia_css_queue_dequeue(
return 0; return 0;
} }
int ia_css_queue_is_full( int ia_css_queue_is_full(ia_css_queue_t *qhandle, bool *is_full)
ia_css_queue_t *qhandle,
bool *is_full)
{ {
int error = 0; int error = 0;
...@@ -234,9 +223,7 @@ int ia_css_queue_is_full( ...@@ -234,9 +223,7 @@ int ia_css_queue_is_full(
return -EINVAL; return -EINVAL;
} }
int ia_css_queue_get_free_space( int ia_css_queue_get_free_space(ia_css_queue_t *qhandle, uint32_t *size)
ia_css_queue_t *qhandle,
uint32_t *size)
{ {
int error = 0; int error = 0;
...@@ -268,9 +255,7 @@ int ia_css_queue_get_free_space( ...@@ -268,9 +255,7 @@ int ia_css_queue_get_free_space(
return -EINVAL; return -EINVAL;
} }
int ia_css_queue_get_used_space( int ia_css_queue_get_used_space(ia_css_queue_t *qhandle, uint32_t *size)
ia_css_queue_t *qhandle,
uint32_t *size)
{ {
int error = 0; int error = 0;
...@@ -302,10 +287,7 @@ int ia_css_queue_get_used_space( ...@@ -302,10 +287,7 @@ int ia_css_queue_get_used_space(
return -EINVAL; return -EINVAL;
} }
int ia_css_queue_peek( int ia_css_queue_peek(ia_css_queue_t *qhandle, u32 offset, uint32_t *element)
ia_css_queue_t *qhandle,
u32 offset,
uint32_t *element)
{ {
u32 num_elems = 0; u32 num_elems = 0;
int error = 0; int error = 0;
...@@ -354,9 +336,7 @@ int ia_css_queue_peek( ...@@ -354,9 +336,7 @@ int ia_css_queue_peek(
return -EINVAL; return -EINVAL;
} }
int ia_css_queue_is_empty( int ia_css_queue_is_empty(ia_css_queue_t *qhandle, bool *is_empty)
ia_css_queue_t *qhandle,
bool *is_empty)
{ {
int error = 0; int error = 0;
...@@ -388,9 +368,7 @@ int ia_css_queue_is_empty( ...@@ -388,9 +368,7 @@ int ia_css_queue_is_empty(
return -EINVAL; return -EINVAL;
} }
int ia_css_queue_get_size( int ia_css_queue_get_size(ia_css_queue_t *qhandle, uint32_t *size)
ia_css_queue_t *qhandle,
uint32_t *size)
{ {
int error = 0; int error = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment