mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-20 07:09:58 +00:00
staging: vt6656: Align function parameters
Fixes checkpatch.pl warnings "Alignment should match open parenthesis". Signed-off-by: Simon Sandström <simon@nikanor.nu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9e6519bbca
commit
3781f88786
@ -46,6 +46,6 @@
|
||||
int vnt_key_init_table(struct vnt_private *priv);
|
||||
|
||||
int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
|
||||
struct ieee80211_vif *vif, struct ieee80211_key_conf *key);
|
||||
struct ieee80211_vif *vif, struct ieee80211_key_conf *key);
|
||||
|
||||
#endif /* __KEY_H__ */
|
||||
|
@ -611,7 +611,7 @@ int vnt_rf_write_embedded(struct vnt_private *priv, u32 data)
|
||||
reg_data[3] = (u8)(data >> 24);
|
||||
|
||||
vnt_control_out(priv, MESSAGE_TYPE_WRITE_IFRF,
|
||||
0, 0, ARRAY_SIZE(reg_data), reg_data);
|
||||
0, 0, ARRAY_SIZE(reg_data), reg_data);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -44,7 +44,7 @@
|
||||
#define USB_CTL_WAIT 500 /* ms */
|
||||
|
||||
int vnt_control_out(struct vnt_private *priv, u8 request, u16 value,
|
||||
u16 index, u16 length, u8 *buffer)
|
||||
u16 index, u16 length, u8 *buffer)
|
||||
{
|
||||
int status = 0;
|
||||
u8 *usb_buffer;
|
||||
@ -82,7 +82,7 @@ void vnt_control_out_u8(struct vnt_private *priv, u8 reg, u8 reg_off, u8 data)
|
||||
}
|
||||
|
||||
int vnt_control_in(struct vnt_private *priv, u8 request, u16 value,
|
||||
u16 index, u16 length, u8 *buffer)
|
||||
u16 index, u16 length, u8 *buffer)
|
||||
{
|
||||
int status;
|
||||
u8 *usb_buffer;
|
||||
|
Loading…
x
Reference in New Issue
Block a user