qcacmn: Fix camelCase issues with DHCP Offload

Both the unified DHCP offload struct dhcp_offload_info_params and all
of the function prototypes use "camelCase" which is frowned upon by
the Linux Coding Style. Replace the camelCase.

Change-Id: I3f2ce74bc150668b96b1946ef7b2d556c23dad94
CRs-Fixed: 2121485
This commit is contained in:
Jeff Johnson
2017-10-04 19:19:20 -07:00
committed by snandini
parent 90cd774a32
commit 645f7a174c
3 changed files with 8 additions and 8 deletions

View File

@@ -3121,15 +3121,15 @@ struct tdls_channel_switch_params {
/**
* struct dhcp_offload_info_params - dhcp offload parameters
* @vdev_id: request data length
* @dhcpSrvOffloadEnabled: dhcp offload enabled
* @dhcpClientNum: dhcp client no
* @dhcpSrvIP: dhcp server ip
* @dhcp_offload_enabled: dhcp offload enabled
* @dhcp_client_num: dhcp client no
* @dhcp_srv_addr: dhcp server ip
*/
struct dhcp_offload_info_params {
uint32_t vdev_id;
uint32_t dhcpSrvOffloadEnabled;
uint32_t dhcpClientNum;
uint32_t dhcpSrvIP;
bool dhcp_offload_enabled;
uint32_t dhcp_client_num;
uint32_t dhcp_srv_addr;
};
/**