Commit f3109117 authored by Devendra Naga's avatar Devendra Naga Committed by Greg Kroah-Hartman

staging:tidspbridge: rmgr: fix checkpatch errors

fixes the following errors

ERROR: "foo ** bar" should be "foo **bar"
+int strm_free_buffer(struct strm_res_object *strmres, u8 ** ap_buffer,

ERROR: "foo ** bar" should be "foo **bar"
+int strm_reclaim(struct strm_object *stream_obj, u8 ** buf_ptr,

ERROR: space prohibited after that '*' (ctx:ExW)
+				* hnotification)
 				^
Signed-off-by: default avatarDevendra Naga <devendra.aaru@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2cc5939d
...@@ -223,7 +223,7 @@ void strm_delete(struct strm_mgr *strm_mgr_obj) ...@@ -223,7 +223,7 @@ void strm_delete(struct strm_mgr *strm_mgr_obj)
* Purpose: * Purpose:
* Frees the buffers allocated for a stream. * Frees the buffers allocated for a stream.
*/ */
int strm_free_buffer(struct strm_res_object *strmres, u8 ** ap_buffer, int strm_free_buffer(struct strm_res_object *strmres, u8 **ap_buffer,
u32 num_bufs, struct process_context *pr_ctxt) u32 num_bufs, struct process_context *pr_ctxt)
{ {
int status = 0; int status = 0;
...@@ -523,7 +523,7 @@ int strm_open(struct node_object *hnode, u32 dir, u32 index, ...@@ -523,7 +523,7 @@ int strm_open(struct node_object *hnode, u32 dir, u32 index,
* Purpose: * Purpose:
* Relcaims a buffer from a stream. * Relcaims a buffer from a stream.
*/ */
int strm_reclaim(struct strm_object *stream_obj, u8 ** buf_ptr, int strm_reclaim(struct strm_object *stream_obj, u8 **buf_ptr,
u32 *nbytes, u32 *buff_size, u32 *pdw_arg) u32 *nbytes, u32 *buff_size, u32 *pdw_arg)
{ {
struct bridge_drv_interface *intf_fxns; struct bridge_drv_interface *intf_fxns;
...@@ -599,7 +599,7 @@ int strm_reclaim(struct strm_object *stream_obj, u8 ** buf_ptr, ...@@ -599,7 +599,7 @@ int strm_reclaim(struct strm_object *stream_obj, u8 ** buf_ptr,
*/ */
int strm_register_notify(struct strm_object *stream_obj, u32 event_mask, int strm_register_notify(struct strm_object *stream_obj, u32 event_mask,
u32 notify_type, struct dsp_notification u32 notify_type, struct dsp_notification
* hnotification) *hnotification)
{ {
struct bridge_drv_interface *intf_fxns; struct bridge_drv_interface *intf_fxns;
int status = 0; int status = 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