* [PATCH v3 1/3] Staging: sm750fb: Fix C99 Comments
@ 2015-04-02 17:25 Amitoj Kaur Chawla
2015-04-04 10:03 ` [Outreachy kernel] " Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Amitoj Kaur Chawla @ 2015-04-02 17:25 UTC (permalink / raw)
To: outreachy-kernel
Used C89 instead of C99 Comment and removed C99 comments performing prints only.
Problem found using checkpatch.pl
ERROR: do not use C99 // comments
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
---
Changes made in v3:
-Fixed commit message
drivers/staging/sm750fb/ddk750_chip.c | 10 ++--------
ret.ou | 0
2 files changed, 2 insertions(+), 8 deletions(-)
create mode 100644 ret.ou
diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c
index b2dc136..cd1508a 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -17,7 +17,7 @@ logical_chip_type_t getChipType(void)
char physicalRev;
logical_chip_type_t chip;
- physicalID = devId750;//either 0x718 or 0x750
+ physicalID = devId750; /* either 0x718 or 0x750 */
physicalRev = revId750;
if (physicalID == 0x718)
@@ -257,7 +257,7 @@ int ddk750_initHw(initchip_param_t *pInitParam)
unsigned int ulReg;
#if 0
- //move the code to map regiter function.
+ /* move the code to map regiter function. */
if (getChipType() == SM718) {
/* turn on big endian bit*/
ulReg = PEEK32(0x74);
@@ -488,7 +488,6 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll)
}
}
- //printk("Finally: pll->n[%lu],m[%lu],od[%lu],pod[%lu]\n",pll->N,pll->M,pll->OD,pll->POD);
return ret;
}
@@ -580,14 +579,9 @@ pll_value_t *pPLL /* Structure to hold the value to be set in PLL */
}
/* Restore input frequency from Khz to hz unit */
-// pPLL->inputFreq *= 1000;
ulRequestClk *= 1000;
pPLL->inputFreq = DEFAULT_INPUT_CLOCK; /* Default reference clock */
- /* Output debug information */
- //DDKDEBUGPRINT((DISPLAY_LEVEL, "calcPllValue: Requested Frequency = %d\n", ulRequestClk));
- //DDKDEBUGPRINT((DISPLAY_LEVEL, "calcPllValue: Input CLK = %dHz, M=%d, N=%d, OD=%d, POD=%d\n", pPLL->inputFreq, pPLL->M, pPLL->N, pPLL->OD, pPLL->POD));
-
/* Return actual frequency that the PLL can set */
ret = calcPLL(pPLL);
return ret;
diff --git a/ret.ou b/ret.ou
new file mode 100644
index 0000000..e69de29
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Outreachy kernel] [PATCH v3 1/3] Staging: sm750fb: Fix C99 Comments
2015-04-02 17:25 [PATCH v3 1/3] Staging: sm750fb: Fix C99 Comments Amitoj Kaur Chawla
@ 2015-04-04 10:03 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2015-04-04 10:03 UTC (permalink / raw)
To: Amitoj Kaur Chawla; +Cc: outreachy-kernel
On Thu, Apr 02, 2015 at 10:55:18PM +0530, Amitoj Kaur Chawla wrote:
> Used C89 instead of C99 Comment and removed C99 comments performing prints only.
> Problem found using checkpatch.pl
> ERROR: do not use C99 // comments
>
> Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
> ---
> Changes made in v3:
> -Fixed commit message
>
> drivers/staging/sm750fb/ddk750_chip.c | 10 ++--------
> ret.ou | 0
You created an empty file here :(
Please don't do that, I have to go back and delete this patch now,
hopefully nothing else breaks...
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-04-04 10:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-02 17:25 [PATCH v3 1/3] Staging: sm750fb: Fix C99 Comments Amitoj Kaur Chawla
2015-04-04 10:03 ` [Outreachy kernel] " Greg KH
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.