mirror of https://gitee.com/openkylin/linux.git
media: atomisp: Fix __func__ style warnings
This patch fixes the checkpatch.pl warning: Prefer using '"%s...", __func__' to using '<function name>', this function's name, in a string Signed-off-by: Baidyanath Kundu <kundubaidya99@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
52c6f42fed
commit
d8ebd81141
|
@ -48,7 +48,7 @@ static struct ia_css_refcount_entry *refcount_find_entry(ia_css_ptr ptr,
|
||||||
return NULL;
|
return NULL;
|
||||||
if (!myrefcount.items) {
|
if (!myrefcount.items) {
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR,
|
||||||
"refcount_find_entry(): Ref count not initialized!\n");
|
"%s(): Ref count not initialized!\n", __func__);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -73,12 +73,12 @@ int ia_css_refcount_init(uint32_t size)
|
||||||
|
|
||||||
if (size == 0) {
|
if (size == 0) {
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
||||||
"ia_css_refcount_init(): Size of 0 for Ref count init!\n");
|
"%s(): Size of 0 for Ref count init!\n", __func__);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
if (myrefcount.items) {
|
if (myrefcount.items) {
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
||||||
"ia_css_refcount_init(): Ref count is already initialized\n");
|
"%s(): Ref count is already initialized\n", __func__);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
myrefcount.items =
|
myrefcount.items =
|
||||||
|
@ -99,7 +99,7 @@ void ia_css_refcount_uninit(void)
|
||||||
u32 i;
|
u32 i;
|
||||||
|
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
||||||
"ia_css_refcount_uninit() entry\n");
|
"%s() entry\n", __func__);
|
||||||
for (i = 0; i < myrefcount.size; i++) {
|
for (i = 0; i < myrefcount.size; i++) {
|
||||||
/* driver verifier tool has issues with &arr[i]
|
/* driver verifier tool has issues with &arr[i]
|
||||||
and prefers arr + i; as these are actually equivalent
|
and prefers arr + i; as these are actually equivalent
|
||||||
|
@ -120,7 +120,7 @@ void ia_css_refcount_uninit(void)
|
||||||
myrefcount.items = NULL;
|
myrefcount.items = NULL;
|
||||||
myrefcount.size = 0;
|
myrefcount.size = 0;
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
||||||
"ia_css_refcount_uninit() leave\n");
|
"%s() leave\n", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
ia_css_ptr ia_css_refcount_increment(s32 id, ia_css_ptr ptr)
|
ia_css_ptr ia_css_refcount_increment(s32 id, ia_css_ptr ptr)
|
||||||
|
@ -133,7 +133,7 @@ ia_css_ptr ia_css_refcount_increment(s32 id, ia_css_ptr ptr)
|
||||||
entry = refcount_find_entry(ptr, false);
|
entry = refcount_find_entry(ptr, false);
|
||||||
|
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
||||||
"ia_css_refcount_increment(%x) 0x%x\n", id, ptr);
|
"%s(%x) 0x%x\n", __func__, id, ptr);
|
||||||
|
|
||||||
if (!entry) {
|
if (!entry) {
|
||||||
entry = refcount_find_entry(ptr, true);
|
entry = refcount_find_entry(ptr, true);
|
||||||
|
@ -145,7 +145,7 @@ ia_css_ptr ia_css_refcount_increment(s32 id, ia_css_ptr ptr)
|
||||||
|
|
||||||
if (entry->id != id) {
|
if (entry->id != id) {
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR,
|
||||||
"ia_css_refcount_increment(): Ref count IDS do not match!\n");
|
"%s(): Ref count IDS do not match!\n", __func__);
|
||||||
return mmgr_NULL;
|
return mmgr_NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -165,7 +165,7 @@ bool ia_css_refcount_decrement(s32 id, ia_css_ptr ptr)
|
||||||
struct ia_css_refcount_entry *entry;
|
struct ia_css_refcount_entry *entry;
|
||||||
|
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
||||||
"ia_css_refcount_decrement(%x) 0x%x\n", id, ptr);
|
"%s(%x) 0x%x\n", __func__, id, ptr);
|
||||||
|
|
||||||
if (ptr == mmgr_NULL)
|
if (ptr == mmgr_NULL)
|
||||||
return false;
|
return false;
|
||||||
|
@ -175,7 +175,7 @@ bool ia_css_refcount_decrement(s32 id, ia_css_ptr ptr)
|
||||||
if (entry) {
|
if (entry) {
|
||||||
if (entry->id != id) {
|
if (entry->id != id) {
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR,
|
||||||
"ia_css_refcount_decrement(): Ref count IDS do not match!\n");
|
"%s(): Ref count IDS do not match!\n", __func__);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (entry->count > 0) {
|
if (entry->count > 0) {
|
||||||
|
@ -225,8 +225,8 @@ void ia_css_refcount_clear(s32 id, clear_func clear_func_ptr)
|
||||||
u32 count = 0;
|
u32 count = 0;
|
||||||
|
|
||||||
assert(clear_func_ptr);
|
assert(clear_func_ptr);
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE, "ia_css_refcount_clear(%x)\n",
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE, "%s(%x)\n",
|
||||||
id);
|
__func__, id);
|
||||||
|
|
||||||
for (i = 0; i < myrefcount.size; i++) {
|
for (i = 0; i < myrefcount.size; i++) {
|
||||||
/* driver verifier tool has issues with &arr[i]
|
/* driver verifier tool has issues with &arr[i]
|
||||||
|
@ -236,14 +236,14 @@ void ia_css_refcount_clear(s32 id, clear_func clear_func_ptr)
|
||||||
entry = myrefcount.items + i;
|
entry = myrefcount.items + i;
|
||||||
if ((entry->data != mmgr_NULL) && (entry->id == id)) {
|
if ((entry->data != mmgr_NULL) && (entry->id == id)) {
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
||||||
"ia_css_refcount_clear: %x: 0x%x\n",
|
"%s: %x: 0x%x\n", __func__,
|
||||||
id, entry->data);
|
id, entry->data);
|
||||||
if (clear_func_ptr) {
|
if (clear_func_ptr) {
|
||||||
/* clear using provided function */
|
/* clear using provided function */
|
||||||
clear_func_ptr(entry->data);
|
clear_func_ptr(entry->data);
|
||||||
} else {
|
} else {
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
||||||
"ia_css_refcount_clear: using hmm_free: no clear_func\n");
|
"%s: using hmm_free: no clear_func\n", __func__);
|
||||||
hmm_free(entry->data);
|
hmm_free(entry->data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -260,7 +260,7 @@ void ia_css_refcount_clear(s32 id, clear_func clear_func_ptr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
|
||||||
"ia_css_refcount_clear(%x): cleared %d\n", id,
|
"%s(%x): cleared %d\n", __func__, id,
|
||||||
count);
|
count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue