]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
atomisp: unwrap the _ex malloc/free functions
authorAlan Cox <alan@linux.intel.com>
Wed, 12 Apr 2017 18:21:22 +0000 (19:21 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 14 Apr 2017 08:06:26 +0000 (10:06 +0200)
We are not using these for debugging or debug logging so remove the defines,
trim and rename the functions.

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css.c
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_internal.h

index 7e337e053f6e827f084f190a149497450eec4c16..aa1941928990626168dced5a82822f29987e866d 100644 (file)
@@ -2015,34 +2015,25 @@ ia_css_enable_isys_event_queue(bool enable)
        return IA_CSS_SUCCESS;
 }
 
-void *
-sh_css_malloc_ex(size_t size, const char *caller_func, int caller_line)
+void *sh_css_malloc(size_t size)
 {
        ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE, "sh_css_malloc() enter: size=%d\n",size);
-       (void)caller_func;
-       (void)caller_line;
        if (size > 0 && my_css.malloc)
                return my_css.malloc(size, false);
        return NULL;
 }
 
-void *
-sh_css_calloc_ex(size_t N, size_t size, const char *caller_func, int caller_line)
+void *sh_css_calloc(size_t N, size_t size)
 {
        ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE, "sh_css_calloc() enter: N=%d, size=%d\n",N,size);
-       (void)caller_func;
-       (void)caller_line;
        if (size > 0 && my_css.malloc)
                return my_css.malloc(N*size, true);             
        return NULL;
 }
 
-void
-sh_css_free_ex(void *ptr, const char *caller_func, int caller_line)
+void sh_css_free(void *ptr)
 {
        IA_CSS_ENTER_PRIVATE("ptr = %p", ptr);
-       (void)caller_func;
-       (void)caller_line;
        if (ptr && my_css.free)
                my_css.free(ptr);
        IA_CSS_LEAVE_PRIVATE("void");
index a10892361b0caffce958032fca3f9c86c85a3810..e2b6f06ed0990e312dc146204264dd05d36df4c5 100644 (file)
@@ -1002,23 +1002,14 @@ sh_css_params_init(void);
 void
 sh_css_params_uninit(void);
 
-#define sh_css_malloc(size) sh_css_malloc_ex(size, __func__, __LINE__)
-#define sh_css_calloc(N, size) sh_css_calloc_ex(N, size, __func__, __LINE__)
-#define sh_css_free(ptr) sh_css_free_ex(ptr, __func__, __LINE__)
+void *sh_css_malloc(size_t size);
 
+void *sh_css_calloc(size_t N, size_t size);
 
-void *
-sh_css_malloc_ex(size_t size, const char *caller_func, int caller_line);
-
-void *
-sh_css_calloc_ex(size_t N, size_t size, const char *caller_func, int caller_lin);
-
-void
-sh_css_free_ex(void *ptr, const char *caller_func, int caller_line);
+void sh_css_free(void *ptr);
 
 /* For Acceleration API: Flush FW (shared buffer pointer) arguments */
-void
-sh_css_flush(struct ia_css_acc_fw *fw);
+void sh_css_flush(struct ia_css_acc_fw *fw);
 
 
 void