mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 17:55:05 +03:00
1. Add custom roam parameters 2. Add path for power file 3. Add source tree path for Makefile 4. Add section in Makefile for TEGRA platform 5. Update permissions from 0755 to 0644 for files 6. Move roaming debug prints to RTW_INFO 7. Remove pr_debug redefinition 8. Move LOG_LEVEL to 0 Bug 4556940 Change-Id: Ic6de0172e6e866c6e81fa84685a929b60051ffce Signed-off-by: Shobek Attupurath <sattupurath@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3140409 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3202806 GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Reviewed-by: Ashutosh Jha <ajha@nvidia.com>
45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
/******************************************************************************
|
|
*
|
|
* Copyright(c) 2007 - 2017 Realtek Corporation.
|
|
*
|
|
* 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.
|
|
*
|
|
*****************************************************************************/
|
|
#ifndef __RTL8723B_LED_H__
|
|
#define __RTL8723B_LED_H__
|
|
|
|
#include <drv_conf.h>
|
|
#include <osdep_service.h>
|
|
#include <drv_types.h>
|
|
|
|
#ifdef CONFIG_RTW_SW_LED
|
|
/* ********************************************************************************
|
|
* Interface to manipulate LED objects.
|
|
* ******************************************************************************** */
|
|
#ifdef CONFIG_USB_HCI
|
|
void rtl8723bu_InitSwLeds(PADAPTER padapter);
|
|
void rtl8723bu_DeInitSwLeds(PADAPTER padapter);
|
|
#endif
|
|
#ifdef CONFIG_SDIO_HCI
|
|
void rtl8723bs_InitSwLeds(PADAPTER padapter);
|
|
void rtl8723bs_DeInitSwLeds(PADAPTER padapter);
|
|
#endif
|
|
#ifdef CONFIG_GSPI_HCI
|
|
void rtl8723bs_InitSwLeds(PADAPTER padapter);
|
|
void rtl8723bs_DeInitSwLeds(PADAPTER padapter);
|
|
#endif
|
|
#ifdef CONFIG_PCI_HCI
|
|
void rtl8723be_InitSwLeds(PADAPTER padapter);
|
|
void rtl8723be_DeInitSwLeds(PADAPTER padapter);
|
|
#endif
|
|
|
|
#endif
|
|
#endif/*CONFIG_RTW_SW_LED*/
|