diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2001-03-09 20:33:35 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2001-03-09 20:33:35 +0000 |
commit | 116674acc97ba75a720329996877077d988443a2 (patch) | |
tree | 6a3f2ff0b612ae2ee8a3f3509370c9e6333a53b3 /arch/m68k | |
parent | 71118c319fcae4a138f16e35b4f7e0a6d53ce2ca (diff) |
Merge with Linux 2.4.2.
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/atari/hades-pci.c | 4 | ||||
-rw-r--r-- | arch/m68k/atari/stram.c | 2 | ||||
-rw-r--r-- | arch/m68k/bvme6000/rtc.c | 2 | ||||
-rw-r--r-- | arch/m68k/ifpsp060/src/fplsp.S | 4 | ||||
-rw-r--r-- | arch/m68k/ifpsp060/src/fpsp.S | 2 | ||||
-rw-r--r-- | arch/m68k/ifpsp060/src/isp.S | 2 | ||||
-rw-r--r-- | arch/m68k/ifpsp060/src/pfpsp.S | 2 | ||||
-rw-r--r-- | arch/m68k/kernel/bios32.c | 2 | ||||
-rw-r--r-- | arch/m68k/kernel/entry.S | 2 | ||||
-rw-r--r-- | arch/m68k/kernel/process.c | 2 | ||||
-rw-r--r-- | arch/m68k/mac/misc.c | 2 | ||||
-rw-r--r-- | arch/m68k/mac/oss.c | 2 | ||||
-rw-r--r-- | arch/m68k/math-emu/fp_cond.S | 2 | ||||
-rw-r--r-- | arch/m68k/math-emu/fp_decode.h | 2 | ||||
-rw-r--r-- | arch/m68k/math-emu/fp_emu.h | 2 | ||||
-rw-r--r-- | arch/m68k/math-emu/fp_entry.S | 2 | ||||
-rw-r--r-- | arch/m68k/math-emu/fp_move.S | 2 | ||||
-rw-r--r-- | arch/m68k/math-emu/fp_movem.S | 2 | ||||
-rw-r--r-- | arch/m68k/math-emu/fp_scan.S | 2 | ||||
-rw-r--r-- | arch/m68k/math-emu/fp_util.S | 2 | ||||
-rw-r--r-- | arch/m68k/mm/kmap.c | 2 | ||||
-rw-r--r-- | arch/m68k/mm/memory.c | 2 | ||||
-rw-r--r-- | arch/m68k/mvme16x/rtc.c | 2 |
23 files changed, 26 insertions, 24 deletions
diff --git a/arch/m68k/atari/hades-pci.c b/arch/m68k/atari/hades-pci.c index 2c82e4a7b..6d8ec7333 100644 --- a/arch/m68k/atari/hades-pci.c +++ b/arch/m68k/atari/hades-pci.c @@ -17,7 +17,7 @@ #if defined(CONFIG_PCI) && defined(CONFIG_HADES) -#include <linux/malloc.h> +#include <linux/slab.h> #include <linux/mm.h> #include <linux/pci.h> @@ -372,6 +372,8 @@ struct pci_bus_info * __init init_hades_pci(void) */ bus = kmalloc(sizeof(struct pci_bus_info), GFP_KERNEL); + if (!bus) + return NULL; memset(bus, 0, sizeof(struct pci_bus_info)); /* diff --git a/arch/m68k/atari/stram.c b/arch/m68k/atari/stram.c index b4a797f2e..b7b7b9553 100644 --- a/arch/m68k/atari/stram.c +++ b/arch/m68k/atari/stram.c @@ -16,7 +16,7 @@ #include <linux/major.h> #include <linux/init.h> #include <linux/swap.h> -#include <linux/malloc.h> +#include <linux/slab.h> #include <linux/vmalloc.h> #include <linux/pagemap.h> #include <linux/shm.h> diff --git a/arch/m68k/bvme6000/rtc.c b/arch/m68k/bvme6000/rtc.c index 263cdaff7..23f9a9f1a 100644 --- a/arch/m68k/bvme6000/rtc.c +++ b/arch/m68k/bvme6000/rtc.c @@ -9,7 +9,7 @@ #include <linux/types.h> #include <linux/errno.h> #include <linux/miscdevice.h> -#include <linux/malloc.h> +#include <linux/slab.h> #include <linux/ioport.h> #include <linux/fcntl.h> #include <linux/init.h> diff --git a/arch/m68k/ifpsp060/src/fplsp.S b/arch/m68k/ifpsp060/src/fplsp.S index fc4939b17..903e4d544 100644 --- a/arch/m68k/ifpsp060/src/fplsp.S +++ b/arch/m68k/ifpsp060/src/fplsp.S @@ -9963,7 +9963,7 @@ mns_tiny: # ALGORITHM *********************************************************** # # An underflow should occur as the result of transcendental # # emulation in the 060FPLSP. Create an underflow by using "fmul" # -# and two very small numbers of appropriate sign so the the operating # +# and two very small numbers of appropriate sign so the operating # # system can log the event. # # # ######################################################################### @@ -10020,7 +10020,7 @@ unf_pos: # ALGORITHM *********************************************************** # # An overflow should occur as the result of transcendental # # emulation in the 060FPLSP. Create an overflow by using "fmul" # -# and two very lareg numbers of appropriate sign so the the operating # +# and two very lareg numbers of appropriate sign so the operating # # system can log the event. # # For t_ovfl_sc() we take special care not to lose the INEX2 bit. # # # diff --git a/arch/m68k/ifpsp060/src/fpsp.S b/arch/m68k/ifpsp060/src/fpsp.S index 1099d5e53..400d556c1 100644 --- a/arch/m68k/ifpsp060/src/fpsp.S +++ b/arch/m68k/ifpsp060/src/fpsp.S @@ -2944,7 +2944,7 @@ iea_fmovm_trace: # The FPU is disabled and so we should really have taken the "Line # F Emulator" exception. So, here we create an 8-word stack frame # from our 4-word stack frame. This means we must calculate the length -# the the faulting instruction to get the "next PC". This is trivial for +# the faulting instruction to get the "next PC". This is trivial for # immediate operands but requires some extra work for fmovm dynamic # which can use most addressing modes. iea_disabled: diff --git a/arch/m68k/ifpsp060/src/isp.S b/arch/m68k/ifpsp060/src/isp.S index 0fa431ab9..f779e2c8f 100644 --- a/arch/m68k/ifpsp060/src/isp.S +++ b/arch/m68k/ifpsp060/src/isp.S @@ -2516,7 +2516,7 @@ _mul64: cmpi.b %d0, &0x7 # is src mode Dn or other? bgt.w mul64_memop # src is in memory -# multiplier operand in the the data register file. +# multiplier operand in the data register file. # must extract the register number and fetch the operand from the stack. mul64_regop: andi.w &0x7, %d0 # extract Dn diff --git a/arch/m68k/ifpsp060/src/pfpsp.S b/arch/m68k/ifpsp060/src/pfpsp.S index ec749785a..d175f7af0 100644 --- a/arch/m68k/ifpsp060/src/pfpsp.S +++ b/arch/m68k/ifpsp060/src/pfpsp.S @@ -2943,7 +2943,7 @@ iea_fmovm_trace: # The FPU is disabled and so we should really have taken the "Line # F Emulator" exception. So, here we create an 8-word stack frame # from our 4-word stack frame. This means we must calculate the length -# the the faulting instruction to get the "next PC". This is trivial for +# the faulting instruction to get the "next PC". This is trivial for # immediate operands but requires some extra work for fmovm dynamic # which can use most addressing modes. iea_disabled: diff --git a/arch/m68k/kernel/bios32.c b/arch/m68k/kernel/bios32.c index c3b5dacba..d9cf9d9b8 100644 --- a/arch/m68k/kernel/bios32.c +++ b/arch/m68k/kernel/bios32.c @@ -26,7 +26,7 @@ */ #include <linux/pci.h> -#include <linux/malloc.h> +#include <linux/slab.h> #include <linux/mm.h> #include <asm/io.h> diff --git a/arch/m68k/kernel/entry.S b/arch/m68k/kernel/entry.S index 3e62e6fe1..fcb7b915c 100644 --- a/arch/m68k/kernel/entry.S +++ b/arch/m68k/kernel/entry.S @@ -140,7 +140,7 @@ SYMBOL_NAME_LABEL(ret_from_exception) bnes 2f | if so, skip resched, signals | only allow interrupts when we are really the last one on the | kernel stack, otherwise stack overflow can occur during - | heavy interupt load + | heavy interrupt load andw #ALLOWINT,%sr tstl %curptr@(TASK_NEEDRESCHED) jne SYMBOL_NAME(reschedule) diff --git a/arch/m68k/kernel/process.c b/arch/m68k/kernel/process.c index 6934e4168..7fd40aaa4 100644 --- a/arch/m68k/kernel/process.c +++ b/arch/m68k/kernel/process.c @@ -20,7 +20,7 @@ #include <linux/stddef.h> #include <linux/unistd.h> #include <linux/ptrace.h> -#include <linux/malloc.h> +#include <linux/slab.h> #include <linux/user.h> #include <linux/a.out.h> #include <linux/reboot.h> diff --git a/arch/m68k/mac/misc.c b/arch/m68k/mac/misc.c index d6065716a..afc769d42 100644 --- a/arch/m68k/mac/misc.c +++ b/arch/m68k/mac/misc.c @@ -10,7 +10,7 @@ #include <linux/kernel.h> #include <linux/delay.h> #include <linux/sched.h> -#include <linux/malloc.h> +#include <linux/slab.h> #include <linux/time.h> #include <linux/kd.h> #include <linux/mm.h> diff --git a/arch/m68k/mac/oss.c b/arch/m68k/mac/oss.c index 87d155ee0..f39171648 100644 --- a/arch/m68k/mac/oss.c +++ b/arch/m68k/mac/oss.c @@ -123,7 +123,7 @@ void oss_irq(int irq, void *dev_id, struct pt_regs *regs) /* * Nubus IRQ handler, OSS style * - * Unlike the VIA/RBV this is on its own autovector interupt level. + * Unlike the VIA/RBV this is on its own autovector interrupt level. */ void oss_nubus_irq(int irq, void *dev_id, struct pt_regs *regs) diff --git a/arch/m68k/math-emu/fp_cond.S b/arch/m68k/math-emu/fp_cond.S index d9981d6a8..db53cbe54 100644 --- a/arch/m68k/math-emu/fp_cond.S +++ b/arch/m68k/math-emu/fp_cond.S @@ -17,7 +17,7 @@ * written permission. * * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU Public License, in which case the provisions of the GPL are + * the GNU General Public License, in which case the provisions of the GPL are * required INSTEAD OF the above restrictions. (This clause is * necessary due to a potential bad interaction between the GPL and * the restrictions contained in a BSD-style copyright.) diff --git a/arch/m68k/math-emu/fp_decode.h b/arch/m68k/math-emu/fp_decode.h index 233269415..259785f34 100644 --- a/arch/m68k/math-emu/fp_decode.h +++ b/arch/m68k/math-emu/fp_decode.h @@ -17,7 +17,7 @@ * written permission. * * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU Public License, in which case the provisions of the GPL are + * the GNU General Public License, in which case the provisions of the GPL are * required INSTEAD OF the above restrictions. (This clause is * necessary due to a potential bad interaction between the GPL and * the restrictions contained in a BSD-style copyright.) diff --git a/arch/m68k/math-emu/fp_emu.h b/arch/m68k/math-emu/fp_emu.h index 1a4e16802..bf2d88b29 100644 --- a/arch/m68k/math-emu/fp_emu.h +++ b/arch/m68k/math-emu/fp_emu.h @@ -17,7 +17,7 @@ * written permission. * * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU Public License, in which case the provisions of the GPL are + * the GNU General Public License, in which case the provisions of the GPL are * required INSTEAD OF the above restrictions. (This clause is * necessary due to a potential bad interaction between the GPL and * the restrictions contained in a BSD-style copyright.) diff --git a/arch/m68k/math-emu/fp_entry.S b/arch/m68k/math-emu/fp_entry.S index 55088e8e8..d270b9cb0 100644 --- a/arch/m68k/math-emu/fp_entry.S +++ b/arch/m68k/math-emu/fp_entry.S @@ -17,7 +17,7 @@ * written permission. * * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU Public License, in which case the provisions of the GPL are + * the GNU General Public License, in which case the provisions of the GPL are * required INSTEAD OF the above restrictions. (This clause is * necessary due to a potential bad interaction between the GPL and * the restrictions contained in a BSD-style copyright.) diff --git a/arch/m68k/math-emu/fp_move.S b/arch/m68k/math-emu/fp_move.S index 45fb02bfe..71bdf83ba 100644 --- a/arch/m68k/math-emu/fp_move.S +++ b/arch/m68k/math-emu/fp_move.S @@ -17,7 +17,7 @@ * written permission. * * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU Public License, in which case the provisions of the GPL are + * the GNU General Public License, in which case the provisions of the GPL are * required INSTEAD OF the above restrictions. (This clause is * necessary due to a potential bad interaction between the GPL and * the restrictions contained in a BSD-style copyright.) diff --git a/arch/m68k/math-emu/fp_movem.S b/arch/m68k/math-emu/fp_movem.S index 01058b33b..8354d39e6 100644 --- a/arch/m68k/math-emu/fp_movem.S +++ b/arch/m68k/math-emu/fp_movem.S @@ -17,7 +17,7 @@ * written permission. * * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU Public License, in which case the provisions of the GPL are + * the GNU General Public License, in which case the provisions of the GPL are * required INSTEAD OF the above restrictions. (This clause is * necessary due to a potential bad interaction between the GPL and * the restrictions contained in a BSD-style copyright.) diff --git a/arch/m68k/math-emu/fp_scan.S b/arch/m68k/math-emu/fp_scan.S index 4f404914c..97b73c1de 100644 --- a/arch/m68k/math-emu/fp_scan.S +++ b/arch/m68k/math-emu/fp_scan.S @@ -17,7 +17,7 @@ * written permission. * * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU Public License, in which case the provisions of the GPL are + * the GNU General Public License, in which case the provisions of the GPL are * required INSTEAD OF the above restrictions. (This clause is * necessary due to a potential bad interaction between the GPL and * the restrictions contained in a BSD-style copyright.) diff --git a/arch/m68k/math-emu/fp_util.S b/arch/m68k/math-emu/fp_util.S index a909d813b..12e1e7863 100644 --- a/arch/m68k/math-emu/fp_util.S +++ b/arch/m68k/math-emu/fp_util.S @@ -17,7 +17,7 @@ * written permission. * * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU Public License, in which case the provisions of the GPL are + * the GNU General Public License, in which case the provisions of the GPL are * required INSTEAD OF the above restrictions. (This clause is * necessary due to a potential bad interaction between the GPL and * the restrictions contained in a BSD-style copyright.) diff --git a/arch/m68k/mm/kmap.c b/arch/m68k/mm/kmap.c index 55a455423..da23f36ec 100644 --- a/arch/m68k/mm/kmap.c +++ b/arch/m68k/mm/kmap.c @@ -12,7 +12,7 @@ #include <linux/kernel.h> #include <linux/string.h> #include <linux/types.h> -#include <linux/malloc.h> +#include <linux/slab.h> #include <linux/vmalloc.h> #include <asm/setup.h> diff --git a/arch/m68k/mm/memory.c b/arch/m68k/mm/memory.c index a3c4f38c5..164c5cc72 100644 --- a/arch/m68k/mm/memory.c +++ b/arch/m68k/mm/memory.c @@ -9,7 +9,7 @@ #include <linux/kernel.h> #include <linux/string.h> #include <linux/types.h> -#include <linux/malloc.h> +#include <linux/slab.h> #include <linux/init.h> #include <linux/pagemap.h> diff --git a/arch/m68k/mvme16x/rtc.c b/arch/m68k/mvme16x/rtc.c index 677621629..0c118ceb0 100644 --- a/arch/m68k/mvme16x/rtc.c +++ b/arch/m68k/mvme16x/rtc.c @@ -9,7 +9,7 @@ #include <linux/types.h> #include <linux/errno.h> #include <linux/miscdevice.h> -#include <linux/malloc.h> +#include <linux/slab.h> #include <linux/ioport.h> #include <linux/fcntl.h> #include <linux/init.h> |