staging: sm750fb: Remove typedef from "typedef struct _mode_parameter_t"
authorArushi Singhal <arushisinghal19971997@gmail.com>
Tue, 21 Mar 2017 15:06:37 +0000 (20:36 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Mar 2017 13:23:19 +0000 (14:23 +0100)
This patch removes typedefs from struct and renames it from "typedef
struct _mode_parameter_t" to "struct mode_parameter" as per kernel
coding standards."

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/ddk750_mode.c
drivers/staging/sm750fb/ddk750_mode.h
drivers/staging/sm750fb/sm750_hw.c

index 37b5d4850fb94394a6202ca3bdbee1aaca47fbcf..bb673e18999be04b1ba9a5b94f05d820ab38c55e 100644 (file)
@@ -12,7 +12,8 @@
  * HW only supports 7 predefined pixel clocks, and clock select is
  * in bit 29:27 of Display Control register.
  */
-static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam, unsigned long dispControl)
+static unsigned long displayControlAdjust_SM750LE(struct mode_parameter *pModeParam,
+                                                 unsigned long dispControl)
 {
        unsigned long x, y;
 
@@ -72,7 +73,8 @@ static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam,
 }
 
 /* only timing related registers will be  programed */
-static int programModeRegisters(mode_parameter_t *pModeParam, struct pll_value *pll)
+static int programModeRegisters(struct mode_parameter *pModeParam,
+                               struct pll_value *pll)
 {
        int ret = 0;
        int cnt = 0;
@@ -203,7 +205,7 @@ static int programModeRegisters(mode_parameter_t *pModeParam, struct pll_value *
        return ret;
 }
 
-int ddk750_setModeTiming(mode_parameter_t *parm, clock_type_t clock)
+int ddk750_setModeTiming(struct mode_parameter *parm, clock_type_t clock)
 {
        struct pll_value pll;
        unsigned int uiActualPixelClk;
index 6d204b8b4a01c4eda26dc2dbfa5b7a1686accd3f..9dc4d6c5a779e76ca5ea910ca334e628fb5928c7 100644 (file)
@@ -9,7 +9,7 @@ typedef enum _spolarity_t {
 }
 spolarity_t;
 
-typedef struct _mode_parameter_t {
+struct mode_parameter {
        /* Horizontal timing. */
        unsigned long horizontal_total;
        unsigned long horizontal_display_end;
@@ -31,9 +31,7 @@ typedef struct _mode_parameter_t {
 
        /* Clock Phase. This clock phase only applies to Panel. */
        spolarity_t clock_phase_polarity;
-}
-mode_parameter_t;
-
-int ddk750_setModeTiming(mode_parameter_t *parm, clock_type_t clock);
+};
 
+int ddk750_setModeTiming(struct mode_parameter *parm, clock_type_t clock);
 #endif
index fab3fc9c8330a56730ffedd367ee4ce5aa7c0293..baf1bbdc92ff9c2546ca75fb96ce24af9d04a235 100644 (file)
@@ -252,7 +252,7 @@ int hw_sm750_crtc_setMode(struct lynxfb_crtc *crtc,
 {
        int ret, fmt;
        u32 reg;
-       mode_parameter_t modparm;
+       struct mode_parameter modparm;
        clock_type_t clock;
        struct sm750_dev *sm750_dev;
        struct lynxfb_par *par;