public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] staging: sm750fb: ddk750_power.c: Remove optionnal parentheses.
@ 2015-07-17 13:04 Antoine BLIN
  2015-07-17 13:04 ` [PATCH 2/2] staging: sm750fb: ddk750_power.c: Split lines over 80 characters Antoine BLIN
  2015-07-23  3:56 ` [PATCH 1/2] staging: sm750fb: ddk750_power.c: Remove optionnal parentheses Greg KH
  0 siblings, 2 replies; 3+ messages in thread
From: Antoine BLIN @ 2015-07-17 13:04 UTC (permalink / raw)
  To: sudipm.mukherjee
  Cc: teddy.wang, gregkh, linux-fbdev, devel, linux-kernel,
	Antoine BLIN

Fix up "return is not a function, parentheses are not required" error found by
the checkpatch.pl script.

Signed-off-by: Antoine BLIN <antoine.blin@lip6.fr>
---
 drivers/staging/sm750fb/ddk750_power.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/sm750fb/ddk750_power.c b/drivers/staging/sm750fb/ddk750_power.c
index c8c51be..3c04447 100644
--- a/drivers/staging/sm750fb/ddk750_power.c
+++ b/drivers/staging/sm750fb/ddk750_power.c
@@ -20,7 +20,7 @@ unsigned int getPowerMode(void)
 {
 	if (getChipType() == SM750LE)
 		return 0;
-	return (FIELD_GET(PEEK32(POWER_MODE_CTRL), POWER_MODE_CTRL, MODE));
+	return FIELD_GET(PEEK32(POWER_MODE_CTRL), POWER_MODE_CTRL, MODE);
 }
 
 
-- 
2.4.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] staging: sm750fb: ddk750_power.c: Split lines over 80 characters.
  2015-07-17 13:04 [PATCH 1/2] staging: sm750fb: ddk750_power.c: Remove optionnal parentheses Antoine BLIN
@ 2015-07-17 13:04 ` Antoine BLIN
  2015-07-23  3:56 ` [PATCH 1/2] staging: sm750fb: ddk750_power.c: Remove optionnal parentheses Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Antoine BLIN @ 2015-07-17 13:04 UTC (permalink / raw)
  To: sudipm.mukherjee
  Cc: teddy.wang, gregkh, linux-fbdev, devel, linux-kernel,
	Antoine BLIN

Fix up "line over 80 characters" warning found by the checkpatch.pl script.

Signed-off-by: Antoine BLIN <antoine.blin@lip6.fr>
---
 drivers/staging/sm750fb/ddk750_power.c | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_power.c b/drivers/staging/sm750fb/ddk750_power.c
index 3c04447..e580dab 100644
--- a/drivers/staging/sm750fb/ddk750_power.c
+++ b/drivers/staging/sm750fb/ddk750_power.c
@@ -8,7 +8,8 @@ void ddk750_setDPMS(DPMS_t state)
 
 	if (getChipType() == SM750LE) {
 		value = PEEK32(CRT_DISPLAY_CTRL);
-		POKE32(CRT_DISPLAY_CTRL, FIELD_VALUE(value, CRT_DISPLAY_CTRL, DPMS, state));
+		POKE32(CRT_DISPLAY_CTRL, FIELD_VALUE(value, CRT_DISPLAY_CTRL,
+						     DPMS, state));
 	} else {
 		value = PEEK32(SYSTEM_CTRL);
 		value = FIELD_VALUE(value, SYSTEM_CTRL, DPMS, state);
@@ -39,15 +40,18 @@ void setPowerMode(unsigned int powerMode)
 
 	switch (powerMode) {
 	case POWER_MODE_CTRL_MODE_MODE0:
-		control_value = FIELD_SET(control_value, POWER_MODE_CTRL, MODE, MODE0);
+		control_value = FIELD_SET(control_value, POWER_MODE_CTRL, MODE,
+					  MODE0);
 		break;
 
 	case POWER_MODE_CTRL_MODE_MODE1:
-		control_value = FIELD_SET(control_value, POWER_MODE_CTRL, MODE, MODE1);
+		control_value = FIELD_SET(control_value, POWER_MODE_CTRL, MODE,
+					  MODE1);
 		break;
 
 	case POWER_MODE_CTRL_MODE_SLEEP:
-		control_value = FIELD_SET(control_value, POWER_MODE_CTRL, MODE, SLEEP);
+		control_value = FIELD_SET(control_value, POWER_MODE_CTRL, MODE,
+					  SLEEP);
 		break;
 
 	default:
@@ -138,8 +142,9 @@ void enableZVPort(unsigned int enable)
 		gate = FIELD_SET(gate, CURRENT_GATE, I2C,    ON);
 #endif
 	} else {
-		/* Disable ZV Port Gate. There is no way to know whether the GPIO pins are being used
-		 or not. Therefore, do not disable the GPIO gate. */
+		/* Disable ZV Port Gate. There is no way to know whether the
+		GPIO pins are being used or not. Therefore, do not disable the
+		GPIO gate. */
 		gate = FIELD_SET(gate, CURRENT_GATE, ZVPORT, OFF);
 	}
 
-- 
2.4.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] staging: sm750fb: ddk750_power.c: Remove optionnal parentheses.
  2015-07-17 13:04 [PATCH 1/2] staging: sm750fb: ddk750_power.c: Remove optionnal parentheses Antoine BLIN
  2015-07-17 13:04 ` [PATCH 2/2] staging: sm750fb: ddk750_power.c: Split lines over 80 characters Antoine BLIN
@ 2015-07-23  3:56 ` Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2015-07-23  3:56 UTC (permalink / raw)
  To: Antoine BLIN
  Cc: sudipm.mukherjee, devel, linux-fbdev, teddy.wang, linux-kernel

On Fri, Jul 17, 2015 at 03:04:33PM +0200, Antoine BLIN wrote:
> Fix up "return is not a function, parentheses are not required" error found by
> the checkpatch.pl script.
> 
> Signed-off-by: Antoine BLIN <antoine.blin@lip6.fr>
> ---
>  drivers/staging/sm750fb/ddk750_power.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Someone else already sent this fix in just before you did, sorry.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-07-23  3:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-17 13:04 [PATCH 1/2] staging: sm750fb: ddk750_power.c: Remove optionnal parentheses Antoine BLIN
2015-07-17 13:04 ` [PATCH 2/2] staging: sm750fb: ddk750_power.c: Split lines over 80 characters Antoine BLIN
2015-07-23  3:56 ` [PATCH 1/2] staging: sm750fb: ddk750_power.c: Remove optionnal parentheses Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox