63 lines
2.1 KiB
Diff
63 lines
2.1 KiB
Diff
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.
|
|
--- a/arch/mips/ath79/Kconfig
|
|
+++ b/arch/mips/ath79/Kconfig
|
|
@@ -1,3 +1,4 @@
|
|
+# Copyright (c) 2013 The Linux Foundation. All rights reserved.
|
|
if ATH79
|
|
|
|
menu "Atheros AR71XX/AR724X/AR913X machine selection"
|
|
@@ -114,6 +115,9 @@ config ATH79_DEV_AP9X_PCI
|
|
select ATH79_PCI_ATH9K_FIXUP
|
|
def_bool n
|
|
|
|
+config ATH79_DEV_AUDIO
|
|
+ def_bool n
|
|
+
|
|
config ATH79_DEV_DSA
|
|
def_bool n
|
|
|
|
@@ -133,6 +137,9 @@ config ATH79_DEV_NFC
|
|
depends on (SOC_AR934X)
|
|
def_bool n
|
|
|
|
+config ATH79_DEV_NAND
|
|
+ def_bool n
|
|
+
|
|
config ATH79_DEV_SPI
|
|
def_bool n
|
|
|
|
--- a/arch/mips/ath79/Makefile
|
|
+++ b/arch/mips/ath79/Makefile
|
|
@@ -1,6 +1,7 @@
|
|
#
|
|
# Makefile for the Atheros AR71XX/AR724X/AR913X specific parts of the kernel
|
|
#
|
|
+# Copyright (c) 2013 The Linux Foundation. All rights reserved.
|
|
# Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
|
|
# Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
|
|
#
|
|
@@ -18,11 +19,13 @@ obj-$(CONFIG_PCI) += pci.o
|
|
#
|
|
obj-y += dev-common.o
|
|
obj-$(CONFIG_ATH79_DEV_AP9X_PCI) += dev-ap9x-pci.o
|
|
+obj-$(CONFIG_ATH79_DEV_AUDIO) += dev-audio.o
|
|
obj-$(CONFIG_ATH79_DEV_DSA) += dev-dsa.o
|
|
obj-$(CONFIG_ATH79_DEV_ETH) += dev-eth.o
|
|
obj-$(CONFIG_ATH79_DEV_GPIO_BUTTONS) += dev-gpio-buttons.o
|
|
obj-$(CONFIG_ATH79_DEV_LEDS_GPIO) += dev-leds-gpio.o
|
|
obj-$(CONFIG_ATH79_DEV_M25P80) += dev-m25p80.o
|
|
+obj-$(CONFIG_ATH79_DEV_NAND) += dev-nand.o
|
|
obj-$(CONFIG_ATH79_DEV_NFC) += dev-nfc.o
|
|
obj-$(CONFIG_ATH79_DEV_SPI) += dev-spi.o
|
|
obj-$(CONFIG_ATH79_DEV_USB) += dev-usb.o
|