staging: sm750fb: function prototype argument should have an identifier name

function prototype arguments like 'struct vb_device_info *','unsigned
long' etc. should have an identifier name.

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Arushi Singhal 2017-03-14 02:18:47 +05:30 committed by Greg Kroah-Hartman
parent 8f86b91184
commit d228cf8744
4 changed files with 5 additions and 5 deletions

View file

@ -102,6 +102,6 @@ typedef enum _disp_output_t {
}
disp_output_t;
void ddk750_setLogicalDispOut(disp_output_t);
void ddk750_setLogicalDispOut(disp_output_t output);
#endif

View file

@ -34,6 +34,6 @@ typedef struct _mode_parameter_t {
}
mode_parameter_t;
int ddk750_setModeTiming(mode_parameter_t *, clock_type_t);
int ddk750_setModeTiming(mode_parameter_t *parm, clock_type_t clock);
#endif

View file

@ -14,7 +14,7 @@ DPMS_t;
(peek32(MISC_CTRL) & ~MISC_CTRL_DAC_POWER_OFF) | (off)); \
}
void ddk750_set_dpms(DPMS_t);
void ddk750_set_dpms(DPMS_t state);
void sm750_set_power_mode(unsigned int powerMode);
void sm750_set_current_gate(unsigned int gate);

View file

@ -184,8 +184,8 @@ static inline unsigned long ps_to_hz(unsigned int psvalue)
}
int hw_sm750_map(struct sm750_dev *sm750_dev, struct pci_dev *pdev);
int hw_sm750_inithw(struct sm750_dev*, struct pci_dev *);
void hw_sm750_initAccel(struct sm750_dev *);
int hw_sm750_inithw(struct sm750_dev *sm750_dev, struct pci_dev *pdev);
void hw_sm750_initAccel(struct sm750_dev *sm750_dev);
int hw_sm750_deWait(void);
int hw_sm750le_deWait(void);