Commit 9279e0c6 authored by Rashika Kheria's avatar Rashika Kheria Committed by Greg Kroah-Hartman

Staging: tidspbridge: Fix foo * bar should be foo *bar in dspapi.c

This patch fixes the following checkpatch.pl warning in pmgr/dspapi.c-
ERROR: "foo * bar" should be "foo *bar"
Signed-off-by: default avatarRashika Kheria <rashika.kheria@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6467f5c1
...@@ -162,7 +162,7 @@ static u8 size_cmd[] = { ...@@ -162,7 +162,7 @@ static u8 size_cmd[] = {
ARRAY_SIZE(cmm_cmd), ARRAY_SIZE(cmm_cmd),
}; };
static inline void _cp_fm_usr(void *to, const void __user * from, static inline void _cp_fm_usr(void *to, const void __user *from,
int *err, unsigned long bytes) int *err, unsigned long bytes)
{ {
if (*err) if (*err)
...@@ -507,7 +507,7 @@ u32 mgrwrap_wait_for_bridge_events(union trapped_args *args, void *pr_ctxt) ...@@ -507,7 +507,7 @@ u32 mgrwrap_wait_for_bridge_events(union trapped_args *args, void *pr_ctxt)
/* /*
* ======== MGRWRAP_GetProcessResourceInfo ======== * ======== MGRWRAP_GetProcessResourceInfo ========
*/ */
u32 __deprecated mgrwrap_get_process_resources_info(union trapped_args * args, u32 __deprecated mgrwrap_get_process_resources_info(union trapped_args *args,
void *pr_ctxt) void *pr_ctxt)
{ {
pr_err("%s: deprecated dspbridge ioctl\n", __func__); pr_err("%s: deprecated dspbridge ioctl\n", __func__);
...@@ -581,7 +581,7 @@ u32 procwrap_ctrl(union trapped_args *args, void *pr_ctxt) ...@@ -581,7 +581,7 @@ u32 procwrap_ctrl(union trapped_args *args, void *pr_ctxt)
/* /*
* ======== procwrap_detach ======== * ======== procwrap_detach ========
*/ */
u32 __deprecated procwrap_detach(union trapped_args * args, void *pr_ctxt) u32 __deprecated procwrap_detach(union trapped_args *args, void *pr_ctxt)
{ {
/* proc_detach called at bridge_release only */ /* proc_detach called at bridge_release only */
pr_err("%s: deprecated dspbridge ioctl\n", __func__); pr_err("%s: deprecated dspbridge ioctl\n", __func__);
...@@ -1564,7 +1564,7 @@ u32 strmwrap_free_buffer(union trapped_args *args, void *pr_ctxt) ...@@ -1564,7 +1564,7 @@ u32 strmwrap_free_buffer(union trapped_args *args, void *pr_ctxt)
/* /*
* ======== strmwrap_get_event_handle ======== * ======== strmwrap_get_event_handle ========
*/ */
u32 __deprecated strmwrap_get_event_handle(union trapped_args * args, u32 __deprecated strmwrap_get_event_handle(union trapped_args *args,
void *pr_ctxt) void *pr_ctxt)
{ {
pr_err("%s: deprecated dspbridge ioctl\n", __func__); pr_err("%s: deprecated dspbridge ioctl\n", __func__);
...@@ -1793,7 +1793,7 @@ u32 strmwrap_select(union trapped_args *args, void *pr_ctxt) ...@@ -1793,7 +1793,7 @@ u32 strmwrap_select(union trapped_args *args, void *pr_ctxt)
/* /*
* ======== cmmwrap_calloc_buf ======== * ======== cmmwrap_calloc_buf ========
*/ */
u32 __deprecated cmmwrap_calloc_buf(union trapped_args * args, void *pr_ctxt) u32 __deprecated cmmwrap_calloc_buf(union trapped_args *args, void *pr_ctxt)
{ {
/* This operation is done in kernel */ /* This operation is done in kernel */
pr_err("%s: deprecated dspbridge ioctl\n", __func__); pr_err("%s: deprecated dspbridge ioctl\n", __func__);
...@@ -1803,7 +1803,7 @@ u32 __deprecated cmmwrap_calloc_buf(union trapped_args * args, void *pr_ctxt) ...@@ -1803,7 +1803,7 @@ u32 __deprecated cmmwrap_calloc_buf(union trapped_args * args, void *pr_ctxt)
/* /*
* ======== cmmwrap_free_buf ======== * ======== cmmwrap_free_buf ========
*/ */
u32 __deprecated cmmwrap_free_buf(union trapped_args * args, void *pr_ctxt) u32 __deprecated cmmwrap_free_buf(union trapped_args *args, void *pr_ctxt)
{ {
/* This operation is done in kernel */ /* This operation is done in kernel */
pr_err("%s: deprecated dspbridge ioctl\n", __func__); pr_err("%s: deprecated dspbridge ioctl\n", __func__);
......
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