⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atheros_2_0_sdio_stack.patch

📁 openmoko 使用的sdio wifi驱动源码
💻 PATCH
字号:
Index: linux-2.6.24-rc8/arch/arm/Kconfig===================================================================--- linux-2.6.24-rc8.orig/arch/arm/Kconfig+++ linux-2.6.24-rc8/arch/arm/Kconfig@@ -1064,6 +1064,8 @@  source "drivers/usb/Kconfig" +source "drivers/sdio/Kconfig"+ source "drivers/mmc/Kconfig"  source "drivers/leds/Kconfig"Index: linux-2.6.24-rc8/drivers/Kconfig===================================================================--- linux-2.6.24-rc8.orig/drivers/Kconfig+++ linux-2.6.24-rc8/drivers/Kconfig@@ -74,6 +74,8 @@  source "drivers/usb/Kconfig" +source "drivers/sdio/Kconfig"+ source "drivers/mmc/Kconfig"  source "drivers/leds/Kconfig"Index: linux-2.6.24-rc8/drivers/Makefile===================================================================--- linux-2.6.24-rc8.orig/drivers/Makefile+++ linux-2.6.24-rc8/drivers/Makefile@@ -77,6 +77,7 @@ obj-$(CONFIG_CPU_FREQ)		+= cpufreq/ obj-$(CONFIG_CPU_IDLE)		+= cpuidle/ obj-$(CONFIG_MMC)		+= mmc/+obj-$(CONFIG_SDIO)              += sdio/ obj-$(CONFIG_NEW_LEDS)		+= leds/ obj-$(CONFIG_INFINIBAND)	+= infiniband/ obj-$(CONFIG_SGI_SN)		+= sn/Index: linux-2.6.24-rc8/drivers/sdio/Kconfig===================================================================--- /dev/null+++ linux-2.6.24-rc8/drivers/sdio/Kconfig@@ -0,0 +1,17 @@+#+# SDIO driver and host controller support+#++menu "SDIO support"++config SDIO+        tristate "SDIO support"+        default m+        ---help---+          good luck.++source "drivers/sdio/hcd/Kconfig"++source "drivers/sdio/function/Kconfig"++endmenuIndex: linux-2.6.24-rc8/drivers/sdio/Makefile===================================================================--- /dev/null+++ linux-2.6.24-rc8/drivers/sdio/Makefile@@ -0,0 +1,4 @@+#Makefile for SDIO stack+obj-$(CONFIG_SDIO)      += stack/+obj-$(CONFIG_SDIO)      += hcd/+obj-$(CONFIG_SDIO)      += function/Index: linux-2.6.24-rc8/drivers/sdio/stack/Makefile===================================================================--- /dev/null+++ linux-2.6.24-rc8/drivers/sdio/stack/Makefile@@ -0,0 +1 @@+obj-$(CONFIG_SDIO)      += busdriver/ lib/\ No newline at end of fileIndex: linux-2.6.24-rc8/drivers/sdio/stack/busdriver/Makefile===================================================================--- /dev/null+++ linux-2.6.24-rc8/drivers/sdio/stack/busdriver/Makefile@@ -0,0 +1,2 @@+obj-$(CONFIG_SDIO) += sdio_busdriver.o+sdio_busdriver-objs := sdio_bus.o sdio_function.o sdio_bus_misc.o sdio_bus_events.o sdio_bus_os.oIndex: linux-2.6.24-rc8/drivers/sdio/stack/busdriver/_busdriver.h===================================================================--- /dev/null+++ linux-2.6.24-rc8/drivers/sdio/stack/busdriver/_busdriver.h@@ -0,0 +1,466 @@+/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++@file: _busdriver.h++@abstract: internal include file for busdriver++@notice: Copyright (c), 2004-2006 Atheros Communications, Inc.+++ *+ *  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.+ *+ *  Portions of this code were developed with information supplied from the+ *  SD Card Association Simplified Specifications. The following conditions and disclaimers may apply:+ *+ *   The following conditions apply to the release of the SD simplified specification (锟絊implified+ *   Specification锟

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -