diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2015-12-07 19:56:12 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2015-12-07 19:56:12 +0000 |
commit | c7048982acf266c1eac28a8bf1235b01d2a1fcf4 (patch) | |
tree | b2f8d8e935227f268ccdab3129c0e317e21aa375 | |
parent | 817e7de50f798ea1f5cf8aa2fe8e84f1c0e0f26c (diff) | |
download | master-187ad058-c7048982acf266c1eac28a8bf1235b01d2a1fcf4.tar.gz master-187ad058-c7048982acf266c1eac28a8bf1235b01d2a1fcf4.tar.bz2 master-187ad058-c7048982acf266c1eac28a8bf1235b01d2a1fcf4.zip |
bcm53xx: fix selecting HAVE_SMP symbol in Kconfig
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47809 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/bcm53xx/patches-4.4/299-ARM-BCM-Fix-SMP-in-Kconfig-entries-CYGNUS-and-5301X.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/target/linux/bcm53xx/patches-4.4/299-ARM-BCM-Fix-SMP-in-Kconfig-entries-CYGNUS-and-5301X.patch b/target/linux/bcm53xx/patches-4.4/299-ARM-BCM-Fix-SMP-in-Kconfig-entries-CYGNUS-and-5301X.patch new file mode 100644 index 0000000000..9704da8465 --- /dev/null +++ b/target/linux/bcm53xx/patches-4.4/299-ARM-BCM-Fix-SMP-in-Kconfig-entries-CYGNUS-and-5301X.patch @@ -0,0 +1,33 @@ +From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com> +Date: Mon, 7 Dec 2015 20:51:32 +0100 +Subject: [PATCH] ARM: BCM: Fix SMP in Kconfig entries CYGNUS and 5301X +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Patch "ARM: BCM: Add SMP support for Broadcom 4708" added symbol in a +wrong place. + +Signed-off-by: Rafał Miłecki <zajec5@gmail.com> +--- + arch/arm/mach-bcm/Kconfig | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/arch/arm/mach-bcm/Kconfig ++++ b/arch/arm/mach-bcm/Kconfig +@@ -29,7 +29,6 @@ config ARCH_BCM_IPROC + config ARCH_BCM_CYGNUS + bool "Broadcom Cygnus Support" if ARCH_MULTI_V7 + select ARCH_BCM_IPROC +- select HAVE_SMP + help + Enable support for the Cygnus family, + which includes the following variants: +@@ -58,6 +57,7 @@ config ARCH_BCM_5301X + select ARM_ERRATA_754322 + select ARM_ERRATA_775420 + select ARM_ERRATA_764369 if SMP ++ select HAVE_SMP + + help + Support for Broadcom BCM470X and BCM5301X SoCs with ARM CPU cores. |