driverdev-devel.linuxdriverproject.org archive mirror
 help / color / mirror / Atom feed
From: Sven Leykauf <sven_leykauf1@web.de>
To: devel@driverdev.osuosl.org
Cc: Daniel Bauer <daniel.j.bauer@fau.de>,
	Sven Leykauf <sven_leykauf1@web.de>,
	linux-kernel@i4.cs.fau.de
Subject: [PATCH v2 02/24] sm750fb: Fix Avoid CamelCase
Date: Sat, 14 Dec 2019 21:09:18 +0100	[thread overview]
Message-ID: <20191214200937.10795-2-sven_leykauf1@web.de> (raw)
In-Reply-To: <20191214200937.10795-1-sven_leykauf1@web.de>

Change name of prototyp function and function definition,
according to coding style.

Change prototyp function parameter names,
according to coding style.

Patch upholds compileability.

Depencencies: ddk750_dvi.h
	      ddk750_dvi.c

Co-developed-by: Daniel Bauer <daniel.j.bauer@fau.de>
Signed-off-by: Daniel Bauer <daniel.j.bauer@fau.de>
Signed-off-by: Sven Leykauf <sven_leykauf1@web.de>
---
 drivers/staging/sm750fb/ddk750_dvi.c | 20 ++++++++++----------
 drivers/staging/sm750fb/ddk750_dvi.h | 20 ++++++++++----------
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_dvi.c b/drivers/staging/sm750fb/ddk750_dvi.c
index cd564ea40779..1cd60779747e 100644
--- a/drivers/staging/sm750fb/ddk750_dvi.c
+++ b/drivers/staging/sm750fb/ddk750_dvi.c
@@ -30,16 +30,16 @@ static struct dvi_ctrl_device g_dcftSupportedDviController[] = {
 #endif
 };
 
-int dviInit(unsigned char edge_select,
-	    unsigned char bus_select,
-	    unsigned char dual_edge_clk_select,
-	    unsigned char hsync_enable,
-	    unsigned char vsync_enable,
-	    unsigned char deskew_enable,
-	    unsigned char deskew_setting,
-	    unsigned char continuous_sync_enable,
-	    unsigned char pll_filter_enable,
-	    unsigned char pll_filter_value)
+int dvi_init(unsigned char edge_select,
+	     unsigned char bus_select,
+	     unsigned char dual_edge_clk_select,
+	     unsigned char hsync_enable,
+	     unsigned char vsync_enable,
+	     unsigned char deskew_enable,
+	     unsigned char deskew_setting,
+	     unsigned char continuous_sync_enable,
+	     unsigned char pll_filter_enable,
+	     unsigned char pll_filter_value)
 {
 	struct dvi_ctrl_device *pCurrentDviCtrl;
 
diff --git a/drivers/staging/sm750fb/ddk750_dvi.h b/drivers/staging/sm750fb/ddk750_dvi.h
index cb500d8d698b..912c84ddfc62 100644
--- a/drivers/staging/sm750fb/ddk750_dvi.h
+++ b/drivers/staging/sm750fb/ddk750_dvi.h
@@ -42,16 +42,16 @@ struct dvi_ctrl_device {
 #define DVI_CTRL_SII164
 
 /* dvi functions prototype */
-int dviInit(unsigned char edgeSelect,
-	    unsigned char busSelect,
-	    unsigned char dualEdgeClkSelect,
-	    unsigned char hsyncEnable,
-	    unsigned char vsyncEnable,
-	    unsigned char deskewEnable,
-	    unsigned char deskewSetting,
-	    unsigned char continuousSyncEnable,
-	    unsigned char pllFilterEnable,
-	    unsigned char pllFilterValue);
+int dvi_init(unsigned char edge_select,
+	     unsigned char bus_select,
+	     unsigned char dual_edge_clk_select,
+	     unsigned char hsync_enable,
+	     unsigned char vsync_enable,
+	     unsigned char deskew_enable,
+	     unsigned char deskew_setting,
+	     unsigned char continuous_sync_enable,
+	     unsigned char pll_filter_enable,
+	     unsigned char pll_filter_value);
 
 #endif
 
-- 
2.20.1

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

  reply	other threads:[~2019-12-14 20:11 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-14 20:09 [PATCH v2 01/24] sm750fb: Fix Avoid CamelCase Sven Leykauf
2019-12-14 20:09 ` Sven Leykauf [this message]
2019-12-14 20:09 ` [PATCH v2 03/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 04/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 05/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 06/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 07/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 08/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 09/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 10/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 11/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 12/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 13/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 14/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 15/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 16/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 17/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 18/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 19/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 20/24] " Sven Leykauf
2019-12-14 20:09 ` [PATCH v2 21/24] " Sven Leykauf
2019-12-14 20:10 ` [PATCH v2 22/24] " Sven Leykauf
2019-12-14 20:10 ` [PATCH v2 23/24] " Sven Leykauf
2019-12-14 20:10 ` [PATCH v2 24/24] sm750fb: Fix Overlong Line Issues Sven Leykauf

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=20191214200937.10795-2-sven_leykauf1@web.de \
    --to=sven_leykauf1@web.de \
    --cc=daniel.j.bauer@fau.de \
    --cc=devel@driverdev.osuosl.org \
    --cc=linux-kernel@i4.cs.fau.de \
    /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;
as well as URLs for NNTP newsgroup(s).