From: Omar Ramirez Luna <omar.ramirez@ti.com>
To: linux-omap <linux-omap@vger.kernel.org>
Cc: Ameya Palande <ameya.palande@nokia.com>,
Hiroshi Doyu <Hiroshi.DOYU@nokia.com>,
Felipe Contreras <felipe.contreras@nokia.com>,
Nishanth Menon <nm@ti.com>,
Omar Ramirez Luna <omar.ramirez@ti.com>
Subject: [PATCH 06/10] DSPBRIDGE: checkpatch - space required before open parenthesis
Date: Fri, 15 Jan 2010 15:28:37 -0600 [thread overview]
Message-ID: <1263590921-24357-7-git-send-email-omar.ramirez@ti.com> (raw)
In-Reply-To: <1263590921-24357-6-git-send-email-omar.ramirez@ti.com>
ERROR: space required before the open parenthesis '('
Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
---
drivers/dsp/bridge/pmgr/dev.c | 2 +-
drivers/dsp/bridge/services/dbg.c | 2 +-
drivers/dsp/bridge/wmd/io_sm.c | 4 ++--
drivers/dsp/bridge/wmd/msg_sm.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/dsp/bridge/pmgr/dev.c b/drivers/dsp/bridge/pmgr/dev.c
index a9cce95..5c5e056 100644
--- a/drivers/dsp/bridge/pmgr/dev.c
+++ b/drivers/dsp/bridge/pmgr/dev.c
@@ -441,7 +441,7 @@ DSP_STATUS DEV_DestroyDevice(struct DEV_OBJECT *hDevObject)
/* Call the driver's WMD_DEV_Destroy() function: */
/* Require of DevDestroy */
- if(pDevObject->hWmdContext) {
+ if (pDevObject->hWmdContext) {
status = (*pDevObject->intfFxns.pfnDevDestroy)
(pDevObject->hWmdContext);
pDevObject->hWmdContext = NULL;
diff --git a/drivers/dsp/bridge/services/dbg.c b/drivers/dsp/bridge/services/dbg.c
index bc57fa8..bc5c8cd 100644
--- a/drivers/dsp/bridge/services/dbg.c
+++ b/drivers/dsp/bridge/services/dbg.c
@@ -33,7 +33,7 @@
static struct GT_Mask DBG_debugMask = { NULL, NULL }; /* GT trace var. */
#endif
-#if (defined(DEBUG) || defined (DDSP_DEBUG_PRODUCT)) && GT_TRACE
+#if (defined(DEBUG) || defined(DDSP_DEBUG_PRODUCT)) && GT_TRACE
/*
* ======== DBG_Init ========
diff --git a/drivers/dsp/bridge/wmd/io_sm.c b/drivers/dsp/bridge/wmd/io_sm.c
index 8cdc83e..45d90d1 100644
--- a/drivers/dsp/bridge/wmd/io_sm.c
+++ b/drivers/dsp/bridge/wmd/io_sm.c
@@ -197,7 +197,7 @@ DSP_STATUS WMD_IO_Create(OUT struct IO_MGR **phIOMgr,
* size of message buffer in shared memory is configurable in
* the base image. */
DEV_GetWMDContext(hDevObject, &hWmdContext);
- if(!hWmdContext) {
+ if (!hWmdContext) {
status = DSP_EHANDLE;
goto func_end;
}
@@ -1102,7 +1102,7 @@ func_end:
*/
void IO_Schedule(struct IO_MGR *pIOMgr)
{
- if(!MEM_IsValidHandle(pIOMgr, IO_MGRSIGNATURE))
+ if (!MEM_IsValidHandle(pIOMgr, IO_MGRSIGNATURE))
return;
DPC_Schedule(pIOMgr->hDPC);
diff --git a/drivers/dsp/bridge/wmd/msg_sm.c b/drivers/dsp/bridge/wmd/msg_sm.c
index c29b64e..ad716ab 100644
--- a/drivers/dsp/bridge/wmd/msg_sm.c
+++ b/drivers/dsp/bridge/wmd/msg_sm.c
@@ -65,7 +65,7 @@ DSP_STATUS WMD_MSG_Create(OUT struct MSG_MGR **phMsgMgr,
goto func_end;
}
DEV_GetIOMgr(hDevObject, &hIOMgr);
- if(!hIOMgr) {
+ if (!hIOMgr) {
status = DSP_EPOINTER;
goto func_end;
}
--
1.6.2.4
next prev parent reply other threads:[~2010-01-15 21:18 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-15 21:28 [PATCH 00/10] trivial cleanups Omar Ramirez Luna
2010-01-15 21:28 ` [PATCH 01/10] DSPBRIDGE: trivial license fix in tramp and tramp_table_c6000 Omar Ramirez Luna
2010-01-15 21:28 ` [PATCH 02/10] DSPBRIDGE: contributors file Omar Ramirez Luna
[not found] ` <1263590921-24357-4-git-send-email-omar.ramirez@ti.com>
[not found] ` <1263590921-24357-5-git-send-email-omar.ramirez@ti.com>
2010-01-15 21:28 ` [PATCH 05/10] DSPBRIDGE: checkpatch - space required after comma Omar Ramirez Luna
2010-01-15 21:28 ` Omar Ramirez Luna [this message]
2010-01-15 21:28 ` [PATCH 07/10] DSPBRIDGE: checkpatch spacing and indentation Omar Ramirez Luna
2010-01-15 21:28 ` [PATCH 08/10] DSPBRIDGE: Checkpatch - line over 80 characters Omar Ramirez Luna
2010-01-15 21:28 ` [PATCH 09/10] DSPBRIDGE: checkpatch - printk() should include KERN_ facility level Omar Ramirez Luna
2010-01-15 21:28 ` [PATCH 10/10] DSPBRIDGE: trivial cleanup for io_sm Omar Ramirez Luna
2010-01-18 19:13 ` [PATCH 00/10] trivial cleanups Ramirez Luna, Omar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1263590921-24357-7-git-send-email-omar.ramirez@ti.com \
--to=omar.ramirez@ti.com \
--cc=Hiroshi.DOYU@nokia.com \
--cc=ameya.palande@nokia.com \
--cc=felipe.contreras@nokia.com \
--cc=linux-omap@vger.kernel.org \
--cc=nm@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox