drivers/staging/media: atomisp: Removing redundant information from dev_err

Removing hardcoded function name as code is already using __func__

Signed-off-by: Pushkar Jambhlekar <pushkar.iit@gmail.com>
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Pushkar Jambhlekar 2017-03-27 16:14:15 +01:00 committed by Greg Kroah-Hartman
parent 9e40ff1f78
commit 66695837e1

View File

@ -63,7 +63,7 @@ struct hmm_buffer_object *__bo_alloc(struct kmem_cache *bo_cache)
bo = kmem_cache_alloc(bo_cache, GFP_KERNEL);
if (!bo)
dev_err(atomisp_dev, "%s: __bo_alloc failed!\n", __func__);
dev_err(atomisp_dev, "%s: failed!\n", __func__);
return bo;
}