aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2015-04-13 17:18:27 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2015-04-13 17:18:27 -0400
commit5142ef1cbda9a48ff87e9b944096767252204c6e (patch)
treef3227002f3cc0169566f5c34291b86f876bb676c
parent6a16dda86ebbcfe690c753c3fb469b4f9ad5a5ef (diff)
parentb24f670b7f5b2058b95370caa9f104b3cefb9f1d (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k
Pull m68k updates from Geert Uytterhoeven. * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k: m68k/mac: Fix out-of-bounds array index in OSS IRQ source initialization m68k/pci: Remove a superflous KERN_ERR m68k/defconfig: Update defconfigs for v4.0-rc1 m68k/q40: Make NE2000 builtin instead of modular m68k: Remove FSF address
-rw-r--r--arch/m68k/configs/amiga_defconfig3
-rw-r--r--arch/m68k/configs/apollo_defconfig3
-rw-r--r--arch/m68k/configs/atari_defconfig3
-rw-r--r--arch/m68k/configs/bvme6000_defconfig3
-rw-r--r--arch/m68k/configs/hp300_defconfig3
-rw-r--r--arch/m68k/configs/mac_defconfig3
-rw-r--r--arch/m68k/configs/multi_defconfig3
-rw-r--r--arch/m68k/configs/mvme147_defconfig3
-rw-r--r--arch/m68k/configs/mvme16x_defconfig3
-rw-r--r--arch/m68k/configs/q40_defconfig5
-rw-r--r--arch/m68k/configs/sun3_defconfig3
-rw-r--r--arch/m68k/configs/sun3x_defconfig3
-rw-r--r--arch/m68k/include/asm/mcfqspi.h5
-rw-r--r--arch/m68k/kernel/pcibios.c2
-rw-r--r--arch/m68k/lib/ashldi3.c7
-rw-r--r--arch/m68k/lib/ashrdi3.c7
-rw-r--r--arch/m68k/lib/divsi3.S7
-rw-r--r--arch/m68k/lib/lshrdi3.c7
-rw-r--r--arch/m68k/lib/modsi3.S7
-rw-r--r--arch/m68k/lib/muldi3.c7
-rw-r--r--arch/m68k/lib/mulsi3.S7
-rw-r--r--arch/m68k/lib/udivsi3.S7
-rw-r--r--arch/m68k/lib/umodsi3.S7
-rw-r--r--arch/m68k/mac/oss.c3
24 files changed, 48 insertions, 63 deletions
diff --git a/arch/m68k/configs/amiga_defconfig b/arch/m68k/configs/amiga_defconfig
index 1a10a08ebec7..ed1643b4c678 100644
--- a/arch/m68k/configs/amiga_defconfig
+++ b/arch/m68k/configs/amiga_defconfig
@@ -521,8 +521,10 @@ CONFIG_NLS_MAC_TURKISH=m
521CONFIG_DLM=m 521CONFIG_DLM=m
522CONFIG_MAGIC_SYSRQ=y 522CONFIG_MAGIC_SYSRQ=y
523CONFIG_ASYNC_RAID6_TEST=m 523CONFIG_ASYNC_RAID6_TEST=m
524CONFIG_TEST_HEXDUMP=m
524CONFIG_TEST_STRING_HELPERS=m 525CONFIG_TEST_STRING_HELPERS=m
525CONFIG_TEST_KSTRTOX=m 526CONFIG_TEST_KSTRTOX=m
527CONFIG_TEST_RHASHTABLE=m
526CONFIG_TEST_LKM=m 528CONFIG_TEST_LKM=m
527CONFIG_TEST_USER_COPY=m 529CONFIG_TEST_USER_COPY=m
528CONFIG_TEST_BPF=m 530CONFIG_TEST_BPF=m
@@ -573,5 +575,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
573CONFIG_CRYPTO_DRBG_CTR=y 575CONFIG_CRYPTO_DRBG_CTR=y
574CONFIG_CRYPTO_USER_API_HASH=m 576CONFIG_CRYPTO_USER_API_HASH=m
575CONFIG_CRYPTO_USER_API_SKCIPHER=m 577CONFIG_CRYPTO_USER_API_SKCIPHER=m
578CONFIG_CRYPTO_USER_API_RNG=m
576# CONFIG_CRYPTO_HW is not set 579# CONFIG_CRYPTO_HW is not set
577CONFIG_XZ_DEC_TEST=m 580CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/apollo_defconfig b/arch/m68k/configs/apollo_defconfig
index 7859a738c81e..d38822b1847e 100644
--- a/arch/m68k/configs/apollo_defconfig
+++ b/arch/m68k/configs/apollo_defconfig
@@ -479,8 +479,10 @@ CONFIG_NLS_MAC_TURKISH=m
479CONFIG_DLM=m 479CONFIG_DLM=m
480CONFIG_MAGIC_SYSRQ=y 480CONFIG_MAGIC_SYSRQ=y
481CONFIG_ASYNC_RAID6_TEST=m 481CONFIG_ASYNC_RAID6_TEST=m
482CONFIG_TEST_HEXDUMP=m
482CONFIG_TEST_STRING_HELPERS=m 483CONFIG_TEST_STRING_HELPERS=m
483CONFIG_TEST_KSTRTOX=m 484CONFIG_TEST_KSTRTOX=m
485CONFIG_TEST_RHASHTABLE=m
484CONFIG_TEST_LKM=m 486CONFIG_TEST_LKM=m
485CONFIG_TEST_USER_COPY=m 487CONFIG_TEST_USER_COPY=m
486CONFIG_TEST_BPF=m 488CONFIG_TEST_BPF=m
@@ -531,5 +533,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
531CONFIG_CRYPTO_DRBG_CTR=y 533CONFIG_CRYPTO_DRBG_CTR=y
532CONFIG_CRYPTO_USER_API_HASH=m 534CONFIG_CRYPTO_USER_API_HASH=m
533CONFIG_CRYPTO_USER_API_SKCIPHER=m 535CONFIG_CRYPTO_USER_API_SKCIPHER=m
536CONFIG_CRYPTO_USER_API_RNG=m
534# CONFIG_CRYPTO_HW is not set 537# CONFIG_CRYPTO_HW is not set
535CONFIG_XZ_DEC_TEST=m 538CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/atari_defconfig b/arch/m68k/configs/atari_defconfig
index 372593a3b398..c429199cf4a9 100644
--- a/arch/m68k/configs/atari_defconfig
+++ b/arch/m68k/configs/atari_defconfig
@@ -501,8 +501,10 @@ CONFIG_NLS_MAC_TURKISH=m
501CONFIG_DLM=m 501CONFIG_DLM=m
502CONFIG_MAGIC_SYSRQ=y 502CONFIG_MAGIC_SYSRQ=y
503CONFIG_ASYNC_RAID6_TEST=m 503CONFIG_ASYNC_RAID6_TEST=m
504CONFIG_TEST_HEXDUMP=m
504CONFIG_TEST_STRING_HELPERS=m 505CONFIG_TEST_STRING_HELPERS=m
505CONFIG_TEST_KSTRTOX=m 506CONFIG_TEST_KSTRTOX=m
507CONFIG_TEST_RHASHTABLE=m
506CONFIG_TEST_LKM=m 508CONFIG_TEST_LKM=m
507CONFIG_TEST_USER_COPY=m 509CONFIG_TEST_USER_COPY=m
508CONFIG_TEST_BPF=m 510CONFIG_TEST_BPF=m
@@ -553,5 +555,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
553CONFIG_CRYPTO_DRBG_CTR=y 555CONFIG_CRYPTO_DRBG_CTR=y
554CONFIG_CRYPTO_USER_API_HASH=m 556CONFIG_CRYPTO_USER_API_HASH=m
555CONFIG_CRYPTO_USER_API_SKCIPHER=m 557CONFIG_CRYPTO_USER_API_SKCIPHER=m
558CONFIG_CRYPTO_USER_API_RNG=m
556# CONFIG_CRYPTO_HW is not set 559# CONFIG_CRYPTO_HW is not set
557CONFIG_XZ_DEC_TEST=m 560CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/bvme6000_defconfig b/arch/m68k/configs/bvme6000_defconfig
index f3bd35e76ea4..9b880371d642 100644
--- a/arch/m68k/configs/bvme6000_defconfig
+++ b/arch/m68k/configs/bvme6000_defconfig
@@ -472,8 +472,10 @@ CONFIG_NLS_MAC_TURKISH=m
472CONFIG_DLM=m 472CONFIG_DLM=m
473CONFIG_MAGIC_SYSRQ=y 473CONFIG_MAGIC_SYSRQ=y
474CONFIG_ASYNC_RAID6_TEST=m 474CONFIG_ASYNC_RAID6_TEST=m
475CONFIG_TEST_HEXDUMP=m
475CONFIG_TEST_STRING_HELPERS=m 476CONFIG_TEST_STRING_HELPERS=m
476CONFIG_TEST_KSTRTOX=m 477CONFIG_TEST_KSTRTOX=m
478CONFIG_TEST_RHASHTABLE=m
477CONFIG_TEST_LKM=m 479CONFIG_TEST_LKM=m
478CONFIG_TEST_USER_COPY=m 480CONFIG_TEST_USER_COPY=m
479CONFIG_TEST_BPF=m 481CONFIG_TEST_BPF=m
@@ -524,5 +526,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
524CONFIG_CRYPTO_DRBG_CTR=y 526CONFIG_CRYPTO_DRBG_CTR=y
525CONFIG_CRYPTO_USER_API_HASH=m 527CONFIG_CRYPTO_USER_API_HASH=m
526CONFIG_CRYPTO_USER_API_SKCIPHER=m 528CONFIG_CRYPTO_USER_API_SKCIPHER=m
529CONFIG_CRYPTO_USER_API_RNG=m
527# CONFIG_CRYPTO_HW is not set 530# CONFIG_CRYPTO_HW is not set
528CONFIG_XZ_DEC_TEST=m 531CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/hp300_defconfig b/arch/m68k/configs/hp300_defconfig
index 9f9793fb2b73..49ae3376e993 100644
--- a/arch/m68k/configs/hp300_defconfig
+++ b/arch/m68k/configs/hp300_defconfig
@@ -481,8 +481,10 @@ CONFIG_NLS_MAC_TURKISH=m
481CONFIG_DLM=m 481CONFIG_DLM=m
482CONFIG_MAGIC_SYSRQ=y 482CONFIG_MAGIC_SYSRQ=y
483CONFIG_ASYNC_RAID6_TEST=m 483CONFIG_ASYNC_RAID6_TEST=m
484CONFIG_TEST_HEXDUMP=m
484CONFIG_TEST_STRING_HELPERS=m 485CONFIG_TEST_STRING_HELPERS=m
485CONFIG_TEST_KSTRTOX=m 486CONFIG_TEST_KSTRTOX=m
487CONFIG_TEST_RHASHTABLE=m
486CONFIG_TEST_LKM=m 488CONFIG_TEST_LKM=m
487CONFIG_TEST_USER_COPY=m 489CONFIG_TEST_USER_COPY=m
488CONFIG_TEST_BPF=m 490CONFIG_TEST_BPF=m
@@ -533,5 +535,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
533CONFIG_CRYPTO_DRBG_CTR=y 535CONFIG_CRYPTO_DRBG_CTR=y
534CONFIG_CRYPTO_USER_API_HASH=m 536CONFIG_CRYPTO_USER_API_HASH=m
535CONFIG_CRYPTO_USER_API_SKCIPHER=m 537CONFIG_CRYPTO_USER_API_SKCIPHER=m
538CONFIG_CRYPTO_USER_API_RNG=m
536# CONFIG_CRYPTO_HW is not set 539# CONFIG_CRYPTO_HW is not set
537CONFIG_XZ_DEC_TEST=m 540CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/mac_defconfig b/arch/m68k/configs/mac_defconfig
index 89f225c01a0b..ee143a57058c 100644
--- a/arch/m68k/configs/mac_defconfig
+++ b/arch/m68k/configs/mac_defconfig
@@ -503,8 +503,10 @@ CONFIG_NLS_MAC_TURKISH=m
503CONFIG_DLM=m 503CONFIG_DLM=m
504CONFIG_MAGIC_SYSRQ=y 504CONFIG_MAGIC_SYSRQ=y
505CONFIG_ASYNC_RAID6_TEST=m 505CONFIG_ASYNC_RAID6_TEST=m
506CONFIG_TEST_HEXDUMP=m
506CONFIG_TEST_STRING_HELPERS=m 507CONFIG_TEST_STRING_HELPERS=m
507CONFIG_TEST_KSTRTOX=m 508CONFIG_TEST_KSTRTOX=m
509CONFIG_TEST_RHASHTABLE=m
508CONFIG_TEST_LKM=m 510CONFIG_TEST_LKM=m
509CONFIG_TEST_USER_COPY=m 511CONFIG_TEST_USER_COPY=m
510CONFIG_TEST_BPF=m 512CONFIG_TEST_BPF=m
@@ -555,5 +557,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
555CONFIG_CRYPTO_DRBG_CTR=y 557CONFIG_CRYPTO_DRBG_CTR=y
556CONFIG_CRYPTO_USER_API_HASH=m 558CONFIG_CRYPTO_USER_API_HASH=m
557CONFIG_CRYPTO_USER_API_SKCIPHER=m 559CONFIG_CRYPTO_USER_API_SKCIPHER=m
560CONFIG_CRYPTO_USER_API_RNG=m
558# CONFIG_CRYPTO_HW is not set 561# CONFIG_CRYPTO_HW is not set
559CONFIG_XZ_DEC_TEST=m 562CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/multi_defconfig b/arch/m68k/configs/multi_defconfig
index d3cdb5447a2c..c777aa05048f 100644
--- a/arch/m68k/configs/multi_defconfig
+++ b/arch/m68k/configs/multi_defconfig
@@ -583,8 +583,10 @@ CONFIG_NLS_MAC_TURKISH=m
583CONFIG_DLM=m 583CONFIG_DLM=m
584CONFIG_MAGIC_SYSRQ=y 584CONFIG_MAGIC_SYSRQ=y
585CONFIG_ASYNC_RAID6_TEST=m 585CONFIG_ASYNC_RAID6_TEST=m
586CONFIG_TEST_HEXDUMP=m
586CONFIG_TEST_STRING_HELPERS=m 587CONFIG_TEST_STRING_HELPERS=m
587CONFIG_TEST_KSTRTOX=m 588CONFIG_TEST_KSTRTOX=m
589CONFIG_TEST_RHASHTABLE=m
588CONFIG_TEST_LKM=m 590CONFIG_TEST_LKM=m
589CONFIG_TEST_USER_COPY=m 591CONFIG_TEST_USER_COPY=m
590CONFIG_TEST_BPF=m 592CONFIG_TEST_BPF=m
@@ -635,5 +637,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
635CONFIG_CRYPTO_DRBG_CTR=y 637CONFIG_CRYPTO_DRBG_CTR=y
636CONFIG_CRYPTO_USER_API_HASH=m 638CONFIG_CRYPTO_USER_API_HASH=m
637CONFIG_CRYPTO_USER_API_SKCIPHER=m 639CONFIG_CRYPTO_USER_API_SKCIPHER=m
640CONFIG_CRYPTO_USER_API_RNG=m
638# CONFIG_CRYPTO_HW is not set 641# CONFIG_CRYPTO_HW is not set
639CONFIG_XZ_DEC_TEST=m 642CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/mvme147_defconfig b/arch/m68k/configs/mvme147_defconfig
index b4c76640973e..a7628a85e260 100644
--- a/arch/m68k/configs/mvme147_defconfig
+++ b/arch/m68k/configs/mvme147_defconfig
@@ -472,8 +472,10 @@ CONFIG_NLS_MAC_TURKISH=m
472CONFIG_DLM=m 472CONFIG_DLM=m
473CONFIG_MAGIC_SYSRQ=y 473CONFIG_MAGIC_SYSRQ=y
474CONFIG_ASYNC_RAID6_TEST=m 474CONFIG_ASYNC_RAID6_TEST=m
475CONFIG_TEST_HEXDUMP=m
475CONFIG_TEST_STRING_HELPERS=m 476CONFIG_TEST_STRING_HELPERS=m
476CONFIG_TEST_KSTRTOX=m 477CONFIG_TEST_KSTRTOX=m
478CONFIG_TEST_RHASHTABLE=m
477CONFIG_TEST_LKM=m 479CONFIG_TEST_LKM=m
478CONFIG_TEST_USER_COPY=m 480CONFIG_TEST_USER_COPY=m
479CONFIG_TEST_BPF=m 481CONFIG_TEST_BPF=m
@@ -524,5 +526,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
524CONFIG_CRYPTO_DRBG_CTR=y 526CONFIG_CRYPTO_DRBG_CTR=y
525CONFIG_CRYPTO_USER_API_HASH=m 527CONFIG_CRYPTO_USER_API_HASH=m
526CONFIG_CRYPTO_USER_API_SKCIPHER=m 528CONFIG_CRYPTO_USER_API_SKCIPHER=m
529CONFIG_CRYPTO_USER_API_RNG=m
527# CONFIG_CRYPTO_HW is not set 530# CONFIG_CRYPTO_HW is not set
528CONFIG_XZ_DEC_TEST=m 531CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/mvme16x_defconfig b/arch/m68k/configs/mvme16x_defconfig
index 0d4a26f9b58c..ebaa68268a4a 100644
--- a/arch/m68k/configs/mvme16x_defconfig
+++ b/arch/m68k/configs/mvme16x_defconfig
@@ -472,8 +472,10 @@ CONFIG_NLS_MAC_TURKISH=m
472CONFIG_DLM=m 472CONFIG_DLM=m
473CONFIG_MAGIC_SYSRQ=y 473CONFIG_MAGIC_SYSRQ=y
474CONFIG_ASYNC_RAID6_TEST=m 474CONFIG_ASYNC_RAID6_TEST=m
475CONFIG_TEST_HEXDUMP=m
475CONFIG_TEST_STRING_HELPERS=m 476CONFIG_TEST_STRING_HELPERS=m
476CONFIG_TEST_KSTRTOX=m 477CONFIG_TEST_KSTRTOX=m
478CONFIG_TEST_RHASHTABLE=m
477CONFIG_TEST_LKM=m 479CONFIG_TEST_LKM=m
478CONFIG_TEST_USER_COPY=m 480CONFIG_TEST_USER_COPY=m
479CONFIG_TEST_BPF=m 481CONFIG_TEST_BPF=m
@@ -524,5 +526,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
524CONFIG_CRYPTO_DRBG_CTR=y 526CONFIG_CRYPTO_DRBG_CTR=y
525CONFIG_CRYPTO_USER_API_HASH=m 527CONFIG_CRYPTO_USER_API_HASH=m
526CONFIG_CRYPTO_USER_API_SKCIPHER=m 528CONFIG_CRYPTO_USER_API_SKCIPHER=m
529CONFIG_CRYPTO_USER_API_RNG=m
527# CONFIG_CRYPTO_HW is not set 530# CONFIG_CRYPTO_HW is not set
528CONFIG_XZ_DEC_TEST=m 531CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/q40_defconfig b/arch/m68k/configs/q40_defconfig
index 5d581c503fa3..2c16853aedd3 100644
--- a/arch/m68k/configs/q40_defconfig
+++ b/arch/m68k/configs/q40_defconfig
@@ -340,7 +340,7 @@ CONFIG_VETH=m
340# CONFIG_NET_VENDOR_INTEL is not set 340# CONFIG_NET_VENDOR_INTEL is not set
341# CONFIG_NET_VENDOR_MARVELL is not set 341# CONFIG_NET_VENDOR_MARVELL is not set
342# CONFIG_NET_VENDOR_MICREL is not set 342# CONFIG_NET_VENDOR_MICREL is not set
343CONFIG_NE2000=m 343CONFIG_NE2000=y
344# CONFIG_NET_VENDOR_QUALCOMM is not set 344# CONFIG_NET_VENDOR_QUALCOMM is not set
345# CONFIG_NET_VENDOR_ROCKER is not set 345# CONFIG_NET_VENDOR_ROCKER is not set
346# CONFIG_NET_VENDOR_SAMSUNG is not set 346# CONFIG_NET_VENDOR_SAMSUNG is not set
@@ -494,8 +494,10 @@ CONFIG_NLS_MAC_TURKISH=m
494CONFIG_DLM=m 494CONFIG_DLM=m
495CONFIG_MAGIC_SYSRQ=y 495CONFIG_MAGIC_SYSRQ=y
496CONFIG_ASYNC_RAID6_TEST=m 496CONFIG_ASYNC_RAID6_TEST=m
497CONFIG_TEST_HEXDUMP=m
497CONFIG_TEST_STRING_HELPERS=m 498CONFIG_TEST_STRING_HELPERS=m
498CONFIG_TEST_KSTRTOX=m 499CONFIG_TEST_KSTRTOX=m
500CONFIG_TEST_RHASHTABLE=m
499CONFIG_TEST_LKM=m 501CONFIG_TEST_LKM=m
500CONFIG_TEST_USER_COPY=m 502CONFIG_TEST_USER_COPY=m
501CONFIG_TEST_BPF=m 503CONFIG_TEST_BPF=m
@@ -546,5 +548,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
546CONFIG_CRYPTO_DRBG_CTR=y 548CONFIG_CRYPTO_DRBG_CTR=y
547CONFIG_CRYPTO_USER_API_HASH=m 549CONFIG_CRYPTO_USER_API_HASH=m
548CONFIG_CRYPTO_USER_API_SKCIPHER=m 550CONFIG_CRYPTO_USER_API_SKCIPHER=m
551CONFIG_CRYPTO_USER_API_RNG=m
549# CONFIG_CRYPTO_HW is not set 552# CONFIG_CRYPTO_HW is not set
550CONFIG_XZ_DEC_TEST=m 553CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/sun3_defconfig b/arch/m68k/configs/sun3_defconfig
index c6b49a4a887c..e3056bf0f65b 100644
--- a/arch/m68k/configs/sun3_defconfig
+++ b/arch/m68k/configs/sun3_defconfig
@@ -473,8 +473,10 @@ CONFIG_NLS_MAC_TURKISH=m
473CONFIG_DLM=m 473CONFIG_DLM=m
474CONFIG_MAGIC_SYSRQ=y 474CONFIG_MAGIC_SYSRQ=y
475CONFIG_ASYNC_RAID6_TEST=m 475CONFIG_ASYNC_RAID6_TEST=m
476CONFIG_TEST_HEXDUMP=m
476CONFIG_TEST_STRING_HELPERS=m 477CONFIG_TEST_STRING_HELPERS=m
477CONFIG_TEST_KSTRTOX=m 478CONFIG_TEST_KSTRTOX=m
479CONFIG_TEST_RHASHTABLE=m
478CONFIG_TEST_LKM=m 480CONFIG_TEST_LKM=m
479CONFIG_TEST_USER_COPY=m 481CONFIG_TEST_USER_COPY=m
480CONFIG_TEST_BPF=m 482CONFIG_TEST_BPF=m
@@ -524,5 +526,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
524CONFIG_CRYPTO_DRBG_CTR=y 526CONFIG_CRYPTO_DRBG_CTR=y
525CONFIG_CRYPTO_USER_API_HASH=m 527CONFIG_CRYPTO_USER_API_HASH=m
526CONFIG_CRYPTO_USER_API_SKCIPHER=m 528CONFIG_CRYPTO_USER_API_SKCIPHER=m
529CONFIG_CRYPTO_USER_API_RNG=m
527# CONFIG_CRYPTO_HW is not set 530# CONFIG_CRYPTO_HW is not set
528CONFIG_XZ_DEC_TEST=m 531CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/configs/sun3x_defconfig b/arch/m68k/configs/sun3x_defconfig
index b65785eaff8d..73c36b7a0009 100644
--- a/arch/m68k/configs/sun3x_defconfig
+++ b/arch/m68k/configs/sun3x_defconfig
@@ -473,8 +473,10 @@ CONFIG_NLS_MAC_TURKISH=m
473CONFIG_DLM=m 473CONFIG_DLM=m
474CONFIG_MAGIC_SYSRQ=y 474CONFIG_MAGIC_SYSRQ=y
475CONFIG_ASYNC_RAID6_TEST=m 475CONFIG_ASYNC_RAID6_TEST=m
476CONFIG_TEST_HEXDUMP=m
476CONFIG_TEST_STRING_HELPERS=m 477CONFIG_TEST_STRING_HELPERS=m
477CONFIG_TEST_KSTRTOX=m 478CONFIG_TEST_KSTRTOX=m
479CONFIG_TEST_RHASHTABLE=m
478CONFIG_TEST_LKM=m 480CONFIG_TEST_LKM=m
479CONFIG_TEST_USER_COPY=m 481CONFIG_TEST_USER_COPY=m
480CONFIG_TEST_BPF=m 482CONFIG_TEST_BPF=m
@@ -525,5 +527,6 @@ CONFIG_CRYPTO_DRBG_HASH=y
525CONFIG_CRYPTO_DRBG_CTR=y 527CONFIG_CRYPTO_DRBG_CTR=y
526CONFIG_CRYPTO_USER_API_HASH=m 528CONFIG_CRYPTO_USER_API_HASH=m
527CONFIG_CRYPTO_USER_API_SKCIPHER=m 529CONFIG_CRYPTO_USER_API_SKCIPHER=m
530CONFIG_CRYPTO_USER_API_RNG=m
528# CONFIG_CRYPTO_HW is not set 531# CONFIG_CRYPTO_HW is not set
529CONFIG_XZ_DEC_TEST=m 532CONFIG_XZ_DEC_TEST=m
diff --git a/arch/m68k/include/asm/mcfqspi.h b/arch/m68k/include/asm/mcfqspi.h
index 7b51416ccae2..256da0e4aeb4 100644
--- a/arch/m68k/include/asm/mcfqspi.h
+++ b/arch/m68k/include/asm/mcfqspi.h
@@ -11,11 +11,6 @@
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details. 13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19*/ 14*/
20 15
21#ifndef mcfqspi_h 16#ifndef mcfqspi_h
diff --git a/arch/m68k/kernel/pcibios.c b/arch/m68k/kernel/pcibios.c
index 931a31ff59dd..8520250a1d93 100644
--- a/arch/m68k/kernel/pcibios.c
+++ b/arch/m68k/kernel/pcibios.c
@@ -62,7 +62,7 @@ int pcibios_enable_device(struct pci_dev *dev, int mask)
62 62
63 r = dev->resource + idx; 63 r = dev->resource + idx;
64 if (!r->start && r->end) { 64 if (!r->start && r->end) {
65 pr_err(KERN_ERR "PCI: Device %s not available because of resource collisions\n", 65 pr_err("PCI: Device %s not available because of resource collisions\n",
66 pci_name(dev)); 66 pci_name(dev));
67 return -EINVAL; 67 return -EINVAL;
68 } 68 }
diff --git a/arch/m68k/lib/ashldi3.c b/arch/m68k/lib/ashldi3.c
index 7729f33878d1..37234c2df47f 100644
--- a/arch/m68k/lib/ashldi3.c
+++ b/arch/m68k/lib/ashldi3.c
@@ -11,12 +11,7 @@ any later version.
11GNU CC is distributed in the hope that it will be useful, 11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of 12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details. 14GNU General Public License for more details. */
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20 15
21#define BITS_PER_UNIT 8 16#define BITS_PER_UNIT 8
22 17
diff --git a/arch/m68k/lib/ashrdi3.c b/arch/m68k/lib/ashrdi3.c
index 18ea5f7ed921..1d59345f36c6 100644
--- a/arch/m68k/lib/ashrdi3.c
+++ b/arch/m68k/lib/ashrdi3.c
@@ -11,12 +11,7 @@ any later version.
11GNU CC is distributed in the hope that it will be useful, 11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of 12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details. 14GNU General Public License for more details. */
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20 15
21#define BITS_PER_UNIT 8 16#define BITS_PER_UNIT 8
22 17
diff --git a/arch/m68k/lib/divsi3.S b/arch/m68k/lib/divsi3.S
index ec307b61991e..2c0ec85ac661 100644
--- a/arch/m68k/lib/divsi3.S
+++ b/arch/m68k/lib/divsi3.S
@@ -19,12 +19,7 @@ distribution when not linked into another program.)
19This file is distributed in the hope that it will be useful, but 19This file is distributed in the hope that it will be useful, but
20WITHOUT ANY WARRANTY; without even the implied warranty of 20WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22General Public License for more details. 22General Public License for more details. */
23
24You should have received a copy of the GNU General Public License
25along with this program; see the file COPYING. If not, write to
26the Free Software Foundation, 59 Temple Place - Suite 330,
27Boston, MA 02111-1307, USA. */
28 23
29/* As a special exception, if you link this library with files 24/* As a special exception, if you link this library with files
30 compiled with GCC to produce an executable, this does not cause 25 compiled with GCC to produce an executable, this does not cause
diff --git a/arch/m68k/lib/lshrdi3.c b/arch/m68k/lib/lshrdi3.c
index d06442d3a328..49e1ec8f2cc2 100644
--- a/arch/m68k/lib/lshrdi3.c
+++ b/arch/m68k/lib/lshrdi3.c
@@ -11,12 +11,7 @@ any later version.
11GNU CC is distributed in the hope that it will be useful, 11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of 12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details. 14GNU General Public License for more details. */
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20 15
21#define BITS_PER_UNIT 8 16#define BITS_PER_UNIT 8
22 17
diff --git a/arch/m68k/lib/modsi3.S b/arch/m68k/lib/modsi3.S
index ef3849435768..1d9e0efdf31d 100644
--- a/arch/m68k/lib/modsi3.S
+++ b/arch/m68k/lib/modsi3.S
@@ -19,12 +19,7 @@ distribution when not linked into another program.)
19This file is distributed in the hope that it will be useful, but 19This file is distributed in the hope that it will be useful, but
20WITHOUT ANY WARRANTY; without even the implied warranty of 20WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22General Public License for more details. 22General Public License for more details. */
23
24You should have received a copy of the GNU General Public License
25along with this program; see the file COPYING. If not, write to
26the Free Software Foundation, 59 Temple Place - Suite 330,
27Boston, MA 02111-1307, USA. */
28 23
29/* As a special exception, if you link this library with files 24/* As a special exception, if you link this library with files
30 compiled with GCC to produce an executable, this does not cause 25 compiled with GCC to produce an executable, this does not cause
diff --git a/arch/m68k/lib/muldi3.c b/arch/m68k/lib/muldi3.c
index ee5f0b1b5c5d..9006d15b8721 100644
--- a/arch/m68k/lib/muldi3.c
+++ b/arch/m68k/lib/muldi3.c
@@ -12,12 +12,7 @@ any later version.
12GNU CC is distributed in the hope that it will be useful, 12GNU CC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of 13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details. 15GNU General Public License for more details. */
16
17You should have received a copy of the GNU General Public License
18along with GNU CC; see the file COPYING. If not, write to
19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21 16
22#ifdef CONFIG_CPU_HAS_NO_MULDIV64 17#ifdef CONFIG_CPU_HAS_NO_MULDIV64
23 18
diff --git a/arch/m68k/lib/mulsi3.S b/arch/m68k/lib/mulsi3.S
index ce29ea37b45f..c39ad4e738e9 100644
--- a/arch/m68k/lib/mulsi3.S
+++ b/arch/m68k/lib/mulsi3.S
@@ -19,12 +19,7 @@ distribution when not linked into another program.)
19This file is distributed in the hope that it will be useful, but 19This file is distributed in the hope that it will be useful, but
20WITHOUT ANY WARRANTY; without even the implied warranty of 20WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22General Public License for more details. 22General Public License for more details. */
23
24You should have received a copy of the GNU General Public License
25along with this program; see the file COPYING. If not, write to
26the Free Software Foundation, 59 Temple Place - Suite 330,
27Boston, MA 02111-1307, USA. */
28 23
29/* As a special exception, if you link this library with files 24/* As a special exception, if you link this library with files
30 compiled with GCC to produce an executable, this does not cause 25 compiled with GCC to produce an executable, this does not cause
diff --git a/arch/m68k/lib/udivsi3.S b/arch/m68k/lib/udivsi3.S
index c424c4a1f0a3..35a5446572a5 100644
--- a/arch/m68k/lib/udivsi3.S
+++ b/arch/m68k/lib/udivsi3.S
@@ -19,12 +19,7 @@ distribution when not linked into another program.)
19This file is distributed in the hope that it will be useful, but 19This file is distributed in the hope that it will be useful, but
20WITHOUT ANY WARRANTY; without even the implied warranty of 20WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22General Public License for more details. 22General Public License for more details. */
23
24You should have received a copy of the GNU General Public License
25along with this program; see the file COPYING. If not, write to
26the Free Software Foundation, 59 Temple Place - Suite 330,
27Boston, MA 02111-1307, USA. */
28 23
29/* As a special exception, if you link this library with files 24/* As a special exception, if you link this library with files
30 compiled with GCC to produce an executable, this does not cause 25 compiled with GCC to produce an executable, this does not cause
diff --git a/arch/m68k/lib/umodsi3.S b/arch/m68k/lib/umodsi3.S
index 5def5f626478..099da514a8fd 100644
--- a/arch/m68k/lib/umodsi3.S
+++ b/arch/m68k/lib/umodsi3.S
@@ -19,12 +19,7 @@ distribution when not linked into another program.)
19This file is distributed in the hope that it will be useful, but 19This file is distributed in the hope that it will be useful, but
20WITHOUT ANY WARRANTY; without even the implied warranty of 20WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22General Public License for more details. 22General Public License for more details. */
23
24You should have received a copy of the GNU General Public License
25along with this program; see the file COPYING. If not, write to
26the Free Software Foundation, 59 Temple Place - Suite 330,
27Boston, MA 02111-1307, USA. */
28 23
29/* As a special exception, if you link this library with files 24/* As a special exception, if you link this library with files
30 compiled with GCC to produce an executable, this does not cause 25 compiled with GCC to produce an executable, this does not cause
diff --git a/arch/m68k/mac/oss.c b/arch/m68k/mac/oss.c
index 54037125ebf8..bb11dceed7ed 100644
--- a/arch/m68k/mac/oss.c
+++ b/arch/m68k/mac/oss.c
@@ -47,9 +47,8 @@ void __init oss_init(void)
47 /* Disable all interrupts. Unlike a VIA it looks like we */ 47 /* Disable all interrupts. Unlike a VIA it looks like we */
48 /* do this by setting the source's interrupt level to zero. */ 48 /* do this by setting the source's interrupt level to zero. */
49 49
50 for (i = 0; i <= OSS_NUM_SOURCES; i++) { 50 for (i = 0; i < OSS_NUM_SOURCES; i++)
51 oss->irq_level[i] = 0; 51 oss->irq_level[i] = 0;
52 }
53} 52}
54 53
55/* 54/*