Commit d228cf87 authored by Arushi Singhal's avatar Arushi Singhal Committed by Greg Kroah-Hartman

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: default avatarArushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8f86b911
......@@ -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
......@@ -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
......@@ -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);
......
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment