forked from skritchz/semc-kernel-qsd8k-ics
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Add IPv6 netfilter to enable Data Usage in JellyBean Conflicts: arch/arm/configs/scritch_es209ra_defconfig
- Loading branch information
Showing
146 changed files
with
59,202 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1409,3 +1409,5 @@ source "security/Kconfig" | |
source "crypto/Kconfig" | ||
|
||
source "lib/Kconfig" | ||
|
||
source "drivers/ar6000/Kconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,4 +113,5 @@ source "drivers/xen/Kconfig" | |
source "drivers/staging/Kconfig" | ||
|
||
source "drivers/platform/Kconfig" | ||
|
||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
config ATH6K_X10 | ||
tristate "Atheros WLAN for X10" | ||
depends on WLAN_80211 | ||
help | ||
Build atheros module for X10 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#------------------------------------------------------------------------------ | ||
# Copyright (c) 2004-2010 Atheros Communications Inc. | ||
# All rights reserved. | ||
# | ||
# | ||
# | ||
# Permission to use, copy, modify, and/or distribute this software for any | ||
# purpose with or without fee is hereby granted, provided that the above | ||
# copyright notice and this permission notice appear in all copies. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
# | ||
# | ||
# | ||
# Author(s): ="Atheros" | ||
#------------------------------------------------------------------------------ | ||
|
||
ccflags-y += -I$(obj)/include | ||
ccflags-y += -I$(obj)/include/common | ||
ccflags-y += -I$(obj)/wlan/include | ||
ccflags-y += -I$(obj)/os/linux/include | ||
ccflags-y += -I$(obj)/os | ||
ccflags-y += -I$(obj)/bmi/include | ||
ccflags-y += -I$(obj)/include/common/AR6002/hw4.0 | ||
ccflags-y += -I$(obj)/hif/sdio/linux_sdio/include | ||
|
||
ccflags-y += -DLINUX | ||
ccflags-y += -DDEBUG | ||
ccflags-y += -D__KERNEL__ | ||
ccflags-y += -D__linux__ | ||
ccflags-y += -DTCMD | ||
ccflags-y += -DSEND_EVENT_TO_APP | ||
ccflags-y += -DUSER_KEYS | ||
ccflags-y += -DNO_SYNC_FLUSH | ||
ccflags-y += -DWAPI_ENABLE | ||
ccflags-y += -DANDROID_ENV | ||
ccflags-y += -DSOFTMAC_USED | ||
ccflags-y += -DREGION_CODE_FILE_USED | ||
ccflags-y += -DKERNEL_2_6 | ||
|
||
obj-$(CONFIG_ATH6K_X10) := ar6000.o | ||
|
||
ar6000-y += hif/sdio/linux_sdio/src/hif.o | ||
ar6000-y += htc2/AR6000/ar6k.o | ||
ar6000-y += htc2/AR6000/ar6k_events.o | ||
ar6000-y += htc2/htc_send.o | ||
ar6000-y += htc2/htc_recv.o | ||
ar6000-y += htc2/htc_services.o | ||
ar6000-y += htc2/htc.o | ||
ar6000-y += bmi/src/bmi.o | ||
ar6000-y += os/linux/ar6000_drv.o | ||
ar6000-y += os/linux/ar6000_raw_if.o | ||
ar6000-y += os/linux/netbuf.o | ||
ar6000-y += os/linux/wireless_ext.o | ||
ar6000-y += os/linux/ioctl.o | ||
ar6000-y += os/linux/engine.o | ||
ar6000-y += miscdrv/common_drv.o | ||
ar6000-y += miscdrv/credit_dist.o | ||
ar6000-y += wmi/wmi.o | ||
ar6000-y += wlan/src/wlan_node.o | ||
ar6000-y += wlan/src/wlan_recv_beacon.o | ||
ar6000-y += wlan/src/wlan_utils.o | ||
ar6000-y += os/linux/eeprom.o | ||
#os/linux/ar6000.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
//------------------------------------------------------------------------------ | ||
// <copyright file="bmi_internal.h" company="Atheros"> | ||
// Copyright (c) 2004-2008 Atheros Corporation. All rights reserved. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License version 2 as | ||
// published by the Free Software Foundation; | ||
// | ||
// Software distributed under the License is distributed on an "AS | ||
// IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | ||
// implied. See the License for the specific language governing | ||
// rights and limitations under the License. | ||
// | ||
// | ||
//------------------------------------------------------------------------------ | ||
//============================================================================== | ||
// | ||
// Author(s): ="Atheros" | ||
//============================================================================== | ||
#ifndef BMI_INTERNAL_H | ||
#define BMI_INTERNAL_H | ||
|
||
#include "a_config.h" | ||
#include "athdefs.h" | ||
#include "a_types.h" | ||
#include "a_osapi.h" | ||
#include "a_debug.h" | ||
#include "AR6002/hw/mbox_host_reg.h" | ||
#include "bmi_msg.h" | ||
|
||
#define BMI_COMMUNICATION_TIMEOUT 100000 | ||
|
||
/* ------ Global Variable Declarations ------- */ | ||
A_BOOL bmiDone; | ||
|
||
A_STATUS | ||
bmiBufferSend(HIF_DEVICE *device, | ||
A_UCHAR *buffer, | ||
A_UINT32 length); | ||
|
||
A_STATUS | ||
bmiBufferReceive(HIF_DEVICE *device, | ||
A_UCHAR *buffer, | ||
A_UINT32 length, | ||
A_BOOL want_timeout); | ||
|
||
#endif |
Oops, something went wrong.