qcacld-3.0: Fix -Wmissing-prototypes in wlan_hdd_driver_ops

We want to enable the compiler's -Wmissing-prototypes switch, but
there is existing code that is generating warnings. Fix all warnings
in wlan_hdd_driver_ops.

Change-Id: I6a941cd82af543d433427b5ce3aad80f7e1c8e57
CRs-Fixed: 1074336
This commit is contained in:
Jeff Johnson 2016-10-05 14:22:40 -07:00
parent 510779e8bf
commit 7782cb90b8

View File

@ -48,6 +48,7 @@
#include "bmi.h"
#include "cdp_txrx_bus.h"
#include "pld_common.h"
#include "wlan_hdd_driver_ops.h"
#ifdef MODULE
#define WLAN_MODULE_NAME module_name(THIS_MODULE)
@ -302,8 +303,9 @@ void hdd_hif_close(void *hif_ctx)
*
* Return: void
*/
void hdd_init_qdf_ctx(struct device *dev, void *bdev,
enum qdf_bus_type bus_type, const struct hif_bus_id *bid)
static void hdd_init_qdf_ctx(struct device *dev, void *bdev,
enum qdf_bus_type bus_type,
const struct hif_bus_id *bid)
{
qdf_device_t qdf_dev = cds_get_context(QDF_MODULE_ID_QDF_DEVICE);
@ -470,7 +472,7 @@ static void wlan_hdd_shutdown(void)
*
* Return: void
*/
void wlan_hdd_crash_shutdown(void)
static void wlan_hdd_crash_shutdown(void)
{
hif_crash_shutdown(cds_get_context(QDF_MODULE_ID_HIF));
}
@ -485,7 +487,7 @@ void wlan_hdd_crash_shutdown(void)
*
* Return: void
*/
void wlan_hdd_notify_handler(int state)
static void wlan_hdd_notify_handler(int state)
{
if (!QDF_IS_EPPING_ENABLED(cds_get_conparam())) {
int ret = 0;
@ -579,7 +581,7 @@ int wlan_hdd_bus_suspend(pm_message_t state)
*
* Return: 0 for success and -EBUSY if FW is requesting wake up
*/
int __wlan_hdd_bus_suspend_noirq(void)
static int __wlan_hdd_bus_suspend_noirq(void)
{
hdd_context_t *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
void *hif_ctx;
@ -704,7 +706,7 @@ int wlan_hdd_bus_resume(void)
*
* Return: 0 for success and negative error code for failure
*/
int __wlan_hdd_bus_resume_noirq(void)
static int __wlan_hdd_bus_resume_noirq(void)
{
hdd_context_t *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
void *hif_ctx;