Skip to content
Snippets Groups Projects
Verified Commit d259991d authored by Nicholas High's avatar Nicholas High
Browse files

remove include guard


Signed-off-by: default avatarNick High <nick@i386.io>
parent 91570932
Branches
No related tags found
No related merge requests found
......@@ -19,7 +19,6 @@
******************************************************************************/
#include <linux/time.h>
#include <linux/delay.h>
#ifndef CONFIG_PLATFORM_OPS
extern int bcm_wlan_power_on(int);
extern int bcm_manual_detect(int);
#define RESET 0
......@@ -43,4 +42,3 @@ int platform_wifi_power_on(void)
void platform_wifi_power_off(void)
{
}
#endif // !CONFIG_PLATFORM_OPS
/******************************************************************************
*
* Copyright(c) 2013 Realtek Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
*
******************************************************************************/
#ifndef __PLATFORM_OPS_H__
#define __PLATFORM_OPS_H__
/*
* Return:
* 0: power on successfully
* others: power on failed
*/
int platform_wifi_power_on(void);
void platform_wifi_power_off(void);
#endif // __PLATFORM_OPS_H__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment