Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 66695837 authored by Pushkar Jambhlekar's avatar Pushkar Jambhlekar Committed by Greg Kroah-Hartman
Browse files

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



Removing hardcoded function name as code is already using __func__

Signed-off-by: default avatarPushkar Jambhlekar <pushkar.iit@gmail.com>
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9e40ff1f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}