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 411833aefe
commit a87370f21d
2 changed files with 11 additions and 11 deletions

View File

@@ -2594,13 +2594,13 @@ QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
* Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
*/
QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
struct dhcp_offload_info_params *pDhcpSrvOffloadInfo)
struct dhcp_offload_info_params *params)
{
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
if (wmi_handle->ops->send_process_dhcpserver_offload_cmd)
return wmi_handle->ops->send_process_dhcpserver_offload_cmd(wmi_handle,
pDhcpSrvOffloadInfo);
params);
return QDF_STATUS_E_FAILURE;
}