staging: wilc1000: rename drvHandler in wilc_wlan_cfg_set function
This patch rename drvHandler to drv_handler that is seventh argument of wilc_wlan_cfg_set function to avoid camelcase. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
486416798a
commit
9cd034b841
2 changed files with 3 additions and 3 deletions
|
|
@ -1477,7 +1477,7 @@ static int wilc_wlan_cfg_commit(int type, u32 drv_handler)
|
|||
}
|
||||
|
||||
int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size,
|
||||
int commit, u32 drvHandler)
|
||||
int commit, u32 drv_handler)
|
||||
{
|
||||
wilc_wlan_dev_t *p = &g_wlan;
|
||||
u32 offset;
|
||||
|
|
@ -1500,7 +1500,7 @@ int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size,
|
|||
PRINT_D(RX_DBG, "Processing cfg_set()\n");
|
||||
p->cfg_frame_in_use = 1;
|
||||
|
||||
if (wilc_wlan_cfg_commit(WILC_CFG_SET, drvHandler))
|
||||
if (wilc_wlan_cfg_commit(WILC_CFG_SET, drv_handler))
|
||||
ret_size = 0;
|
||||
|
||||
if (linux_wlan_lock_timeout(&g_linux_wlan->cfg_event,
|
||||
|
|
|
|||
|
|
@ -304,7 +304,7 @@ int wilc_wlan_handle_txq(struct net_device *dev, u32 *txq_count);
|
|||
void wilc_handle_isr(void *wilc);
|
||||
void wilc_wlan_cleanup(struct net_device *dev);
|
||||
int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size,
|
||||
int commit, u32 drvHandler);
|
||||
int commit, u32 drv_handler);
|
||||
int wilc_wlan_cfg_get(int start, u32 wid, int commit, u32 drvHandler);
|
||||
int wilc_wlan_cfg_get_val(u32 wid, u8 *buffer, u32 buffer_size);
|
||||
int wilc_wlan_txq_add_mgmt_pkt(struct net_device *dev, void *priv, u8 *buffer,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue