Coding style RFC: convert for (i=0;iARRAY_SIZE(array);i++) to array_for_each(index, array)

2007-02-12 Thread Joe Perches
Now that most of the sizeof(array)/sizeof(array[0]) conversions have been done (there are about 800 done and about another 130 left), perhaps it could be useful to change the code to use a define similar to the list_for_each #define list_for_each(pos, head) \ for (pos = (head)-next;

Re: Coding style RFC: convert for (i=0;iARRAY_SIZE(array);i++) to array_for_each(index, array)

2007-02-12 Thread Joe Perches
On Tue, 2007-02-13 at 11:20 +1100, Ben Nizette wrote: #define array_for_each(element, array) \ for (int __idx = 0; __idx ARRAY_SIZE((array)); \ __idx++, (element) = (array[__idx])) This requires all interior loop code be changed. - To unsubscribe from this list: send

Re: Coding style RFC: convert for (i=0;iARRAY_SIZE(array);i++) to array_for_each(index, array)

2007-02-12 Thread Joe Perches
On Tue, 2007-02-13 at 15:19 +1100, Nick Piggin wrote: #define array_for_each(element, array) \ for (int __idx = 0; __idx ARRAY_SIZE((array)); \ __idx++, (element) = (array[__idx])) If you really wanted to introduce your loop, then please call it array_for_each_idx, or

RE: [PATCH v3] Make the pr_*() family of macros in kernel.h complete

2007-09-12 Thread Joe Perches
On Wed, 2007-09-12 at 11:44 -0700, Medve Emilian-EMMEDVE1 wrote: First, this patch doesn't have the trailing \n problem that one had. I expect all the kernel logging functions to be overhauled eventually. I'd prefer a mechanism that somehow supports identifying complete messages. I think the

Re: [PATCH] add consts where appropriate in sound/pci/hda/*

2007-09-14 Thread Joe Perches
On Fri, 2007-09-14 at 18:48 +0100, Denys Vlasenko wrote: Patch is attached. The SND_HDA_PRESETS define doesn't seem useful. It's only used once. diff -urp linux-2.6.23-rc6/sound/pci/hda/hda_codec.c linux-2.6.23-rc6.bigdata/sound/pci/hda/hda_codec.c ---

Re: [PATCH 048/104] KVM: Add and use pr_unimpl for standard formatting of unimplemented features

2007-09-17 Thread Joe Perches
On Mon, 2007-09-17 at 10:31 +0200, Avi Kivity wrote: diff --git a/drivers/kvm/kvm.h b/drivers/kvm/kvm.h index cfda3ab..6d25826 100644 --- a/drivers/kvm/kvm.h +++ b/drivers/kvm/kvm.h @@ -474,6 +474,14 @@ struct kvm_arch_ops { extern struct kvm_arch_ops *kvm_arch_ops; +/* The guest did

[PATCH] - drivers/kvm/* - remove ptr comparisons to 0

2007-11-12 Thread Joe Perches
fix sparse warnings Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/kvm/kvm.h |2 +- drivers/kvm/kvm_main.c |3 ++- drivers/kvm/lapic.c|2 +- drivers/kvm/svm.c |2 +- 4 files changed, 5 insertions(+), 4 deletions

[PATCH] - [0/15] - remove defconfig ptr comparisons to 0

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the

[PATCH] - [1/15] - remove defconfig ptr comparisons to 0 - arch/x86

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/arch/x86/boot/printf.c b/arch/x86/boot/printf.c index 1a09f93..953224e 100644 --- a/arch/x86/boot/printf.c +++ b/arch/x86/boot/printf.c

[PATCH] - [2/15] - remove defconfig ptr comparisons to 0 - drivers/net

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c index da767d3..cec3cb4 100644 --- a/drivers/net/bnx2.c +++ b/drivers/net/bnx2.c @@ -2495,7

[PATCH] - [3/15] - remove defconfig ptr comparisons to 0 - drivers/scsi/aic7xxx

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c b/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c index 4488946..223bad1 100644 --- a/drivers/scsi

[PATCH] - [4/15] - remove defconfig ptr comparisons to 0 - fs/jbd

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c index 5d14243..0459657 100644 --- a/fs/jbd/journal.c +++ b/fs/jbd/journal.c @@ -1619,14 +1619,14

[PATCH] - [5/15] - remove defconfig ptr comparisons to 0 - fs/jbd2

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c index 6ddc553..ca74850 100644 --- a/fs/jbd2/journal.c +++ b/fs/jbd2/journal.c @@ -218,7 +218,7

[PATCH] - [7/15] - remove defconfig ptr comparisons to 0 - fs/lockd

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/fs/lockd/svcshare.c b/fs/lockd/svcshare.c index 068886d..98548ad 100644 --- a/fs/lockd/svcshare.c +++ b/fs/lockd/svcshare.c @@ -71,7

[PATCH] - [8/15] - remove defconfig ptr comparisons to 0 - fs/nfs

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/fs/nfs/callback_xdr.c b/fs/nfs/callback_xdr.c index 058ade7..935f145 100644 --- a/fs/nfs/callback_xdr.c +++ b/fs/nfs/callback_xdr.c

[PATCH] - [9/15] - remove defconfig ptr comparisons to 0 - fs/nfsd

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index d019918..07b38cf 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c @@ -987,7 +987,7 @@ nfsd_vfs_write

[PATCH] - [11/15] - remove defconfig ptr comparisons to 0 - fs/smbfs

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/fs/smbfs/smbiod.c b/fs/smbfs/smbiod.c index 283c572..fa3b249 100644 --- a/fs/smbfs/smbiod.c +++ b/fs/smbfs/smbiod.c @@ -206,7 +206,7

[PATCH] - [12/15] - remove defconfig ptr comparisons to 0 - include/asm-x86

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 The memcpy from memory location 0 sure looks odd. Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/include/asm-x86/mach-es7000/mach_mpparse.h b/include/asm-x86/mach-es7000

[PATCH] - [6/15] - remove defconfig ptr comparisons to 0 - fs/jfs

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/fs/jfs/jfs_dtree.c b/fs/jfs/jfs_dtree.c index df25ecc..eb6ba22 100644 --- a/fs/jfs/jfs_dtree.c +++ b/fs/jfs/jfs_dtree.c @@ -284,11

[PATCH] - [13/15] - remove defconfig ptr comparisons to 0 - init

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/init/do_mounts_rd.c b/init/do_mounts_rd.c index 3ac5904..46dfd64 100644 --- a/init/do_mounts_rd.c +++ b/init/do_mounts_rd.c @@ -212,7

[PATCH] - [15/15] - remove defconfig ptr comparisons to 0 - net/sunrpc

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 76be83e..1600df2 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c @@ -157,7 +157,7

[PATCH] - [10/15] - remove defconfig ptr comparisons to 0 - fs/reiserfs

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/fs/reiserfs/do_balan.c b/fs/reiserfs/do_balan.c index f85c5cf..40786d2 100644 --- a/fs/reiserfs/do_balan.c +++ b/fs/reiserfs/do_balan.c

[PATCH] - [14/15] - remove defconfig ptr comparisons to 0 - kernel

2007-11-13 Thread Joe Perches
Remove defconfig ptr comparison to 0 Remove sparse warning: Using plain integer as NULL pointer Signed-off-by: Joe Perches [EMAIL PROTECTED] --- diff --git a/kernel/futex.c b/kernel/futex.c index 9dc591a..ea119d3 100644 --- a/kernel/futex.c +++ b/kernel/futex.c @@ -276,7 +276,7 @@ static int

Re: [PATCH] - [12/15] - remove defconfig ptr comparisons to 0 - include/asm-x86

2007-11-14 Thread Joe Perches
On Wed, 2007-11-14 at 11:54 +0100, Thomas Gleixner wrote: can you please CC the relevant maintainers on patches ? I do try. I also happen to have a series of patches to MAINTAINERS and a scripts/get_maintainer.pl that do exactly that. Maybe a future version might use it. cheers, Joe diff

Re: [PATCH net-2.6.25 8/8] Remove unused IPV4TYPE macros

2007-12-16 Thread Joe Perches
On Sun, 2007-12-16 at 13:48 -0800, David Miller wrote: From: Joe Perches [EMAIL PROTECTED] Date: Thu, 13 Dec 2007 15:39:01 -0800 Signed-off-by: Joe Perches [EMAIL PROTECTED] Applied, thanks for doing this work Joe. I broke the parisc build. Bad Joe... Here's the patch: Signed-off-by: Joe

[PATCH] miscellaneous spelling/typos

2007-12-17 Thread Joe Perches
AKA: avoiding writing holiday cards A collection of typo corrections broken out by subsystem. Almost all are corrections are comments, a few in strings. Words corrected: separate, weird, address, connection, alias, split, timeout write, higher, bigger, length, acquire, success, interrupt,

[PATCH] arch/arm/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/arm/mach-pxa/corgi_ssp.c|2 +- arch/arm/mach-sa1100/collie_pm.c |2 +- arch/arm/plat-s3c24xx/irq.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-pxa/corgi_ssp.c b/arch/arm/mach-pxa

[PATCH] include/asm-arm/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-arm/arch-ixp4xx/ixp4xx-regs.h | 34 +- include/asm-arm/arch-pxa/pxa-regs.h | 36 ++-- include/asm-arm/hardware/it8152.h |2 +- include/asm-arm/mach/udc_pxa2xx.h

[PATCH] arch/blackfin/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/blackfin/kernel/early_printk.c |2 +- arch/blackfin/mach-bf548/ints-priority.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/blackfin/kernel/early_printk.c b/arch/blackfin/kernel/early_printk.c index

[PATCH] arch/h8300/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/h8300/platform/h8s/ints.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/h8300/platform/h8s/ints.c b/arch/h8300/platform/h8s/ints.c index 551fd5f..ac10b97 100644 --- a/arch/h8300/platform/h8s/ints.c +++ b/arch

[PATCH] arch/ia64/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/ia64/sn/pci/tioce_provider.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/ia64/sn/pci/tioce_provider.c b/arch/ia64/sn/pci/tioce_provider.c index cee9379..e1a3e19 100644 --- a/arch/ia64/sn/pci

[PATCH] include/asm-ia64/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-ia64/hw_irq.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/asm-ia64/hw_irq.h b/include/asm-ia64/hw_irq.h index bba5baa..7e6e377 100644 --- a/include/asm-ia64/hw_irq.h +++ b/include/asm-ia64/hw_irq.h

[PATCH] arch/m32r/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/m32r/kernel/ptrace.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/m32r/kernel/ptrace.c b/arch/m32r/kernel/ptrace.c index ed4d075..9aa615d 100644 --- a/arch/m32r/kernel/ptrace.c +++ b/arch/m32r/kernel/ptrace.c

[PATCH] arch/mips/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/mips/au1000/mtx-1/board_setup.c |2 +- arch/mips/kernel/binfmt_elfn32.c |2 +- arch/mips/kernel/binfmt_elfo32.c |2 +- arch/mips/kernel/kspd.c |2 +- arch/mips/kernel/setup.c |4 ++-- arch

[PATCH] include/asm-mips/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-mips/mach-excite/excite_fpga.h |2 +- include/asm-mips/mach-wrppmc/mach-gt64120.h |2 +- include/asm-mips/sgi/ip22.h |2 +- include/asm-mips/sn/sn0/hubio.h |2 +- 4 files changed, 4

[PATCH] arch/parisc/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/parisc/kernel/cache.c|2 +- arch/parisc/kernel/hardware.c |2 +- arch/parisc/kernel/signal.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/parisc/kernel/cache.c b/arch/parisc/kernel/cache.c index

[PATCH] include/asm-parisc/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-parisc/elf.h |2 +- include/asm-parisc/linkage.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/asm-parisc/elf.h b/include/asm-parisc/elf.h index f628ac7..8e7946a 100644 --- a/include/asm

[PATCH] include/asm-powerpc/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-powerpc/8xx_immap.h |2 +- include/asm-powerpc/commproc.h|2 +- include/asm-powerpc/iseries/hv_lp_event.h |2 +- include/asm-powerpc/reg_booke.h |2 +- include/asm-powerpc/smu.h

[PATCH] arch/ppc/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/ppc/syslib/ppc8xx_pic.c |2 +- arch/ppc/syslib/ppc_sys.c|2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/ppc/syslib/ppc8xx_pic.c b/arch/ppc/syslib/ppc8xx_pic.c index e8619c7..bce9a75 100644 --- a/arch/ppc

[PATCH] arch/s390/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/s390/crypto/prng.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/s390/crypto/prng.c b/arch/s390/crypto/prng.c index 8eb3a1a..23ed094 100644 --- a/arch/s390/crypto/prng.c +++ b/arch/s390/crypto/prng.c @@ -90,7

[PATCH] include/asm-s390/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-s390/cio.h|4 ++-- include/asm-s390/dasd.h |2 +- include/asm-s390/qdio.h |2 +- include/asm-s390/zcrypt.h |2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/asm-s390/cio.h b/include

[PATCH] arch/sh/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/sh/boards/dreamcast/irq.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/sh/boards/dreamcast/irq.c b/arch/sh/boards/dreamcast/irq.c index 5bf01f8..9d0673a 100644 --- a/arch/sh/boards/dreamcast/irq.c +++ b/arch

[PATCH] include/asm-ppc/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-ppc/8xx_immap.h |2 +- include/asm-ppc/commproc.h |2 +- include/asm-ppc/reg_booke.h |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/asm-ppc/8xx_immap.h b/include/asm-ppc/8xx_immap.h index

[PATCH] arch/powerpc/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/powerpc/boot/4xx.c |2 +- arch/powerpc/kernel/legacy_serial.c |2 +- arch/powerpc/sysdev/bestcomm/bestcomm.h |2 +- arch/powerpc/sysdev/mmio_nvram.c|2 +- 4 files changed, 4 insertions(+), 4

[PATCH] arch/um: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/um/sys-x86_64/signal.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/um/sys-x86_64/signal.c b/arch/um/sys-x86_64/signal.c index 1778d33..3a63862 100644 --- a/arch/um/sys-x86_64/signal.c +++ b/arch/um/sys

[PATCH] arch/sparc64/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/sparc64/kernel/pci_schizo.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/sparc64/kernel/pci_schizo.c b/arch/sparc64/kernel/pci_schizo.c index 9546ba9..e752e75 100644 --- a/arch/sparc64/kernel/pci_schizo.c

[PATCH] arch/x86/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/x86/kernel/apic_32.c|2 +- arch/x86/kernel/mpparse_32.c |2 +- arch/x86/kernel/vm86_32.c|2 +- arch/x86/mm/srat_64.c|2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/x86/kernel/apic_32

[PATCH] arch/sparc/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/sparc/kernel/ptrace.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/sparc/kernel/ptrace.c b/arch/sparc/kernel/ptrace.c index fe562db..7452269 100644 --- a/arch/sparc/kernel/ptrace.c +++ b/arch/sparc/kernel

[PATCH] arch/sh64/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- arch/sh64/kernel/pci_sh5.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/sh64/kernel/pci_sh5.c b/arch/sh64/kernel/pci_sh5.c index b4d9534..dd69d69 100644 --- a/arch/sh64/kernel/pci_sh5.c +++ b/arch/sh64/kernel

[PATCH] include/acpi/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/acpi/acpixf.h|2 +- include/acpi/processor.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index 9512f04..18a6377 100644 --- a/include/acpi/acpixf.h +++ b

[PATCH] include/asm-sh/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-sh/hd64461.h | 28 ++-- include/asm-sh/microdev.h |4 ++-- include/asm-sh/voyagergx.h |2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/include/asm-sh/hd64461.h b/include/asm

[PATCH] drivers/acpi/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/acpi/scan.c |2 +- drivers/acpi/utilities/utresrc.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 5b4d462..fad2eaa 100644 --- a/drivers/acpi

[PATCH] drivers/atm/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/atm/firestream.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/atm/firestream.c b/drivers/atm/firestream.c index f8f7139..c662d68 100644 --- a/drivers/atm/firestream.c +++ b/drivers/atm/firestream.c

[PATCH] drivers/block/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/block/cciss_scsi.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/block/cciss_scsi.c b/drivers/block/cciss_scsi.c index 63ee6c0..55178e9 100644 --- a/drivers/block/cciss_scsi.c +++ b/drivers/block

[PATCH] drivers/bluetooth/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/bluetooth/btuart_cs.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c index 08f48d5..dade162 100644 --- a/drivers/bluetooth/btuart_cs.c +++ b/drivers

[PATCH] drivers/ata/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/ata/ata_piix.c|2 +- drivers/ata/libata-core.c |4 ++-- drivers/ata/pata_at32.c |2 +- drivers/ata/pata_efar.c |2 +- drivers/ata/pata_it8213.c |2 +- drivers/ata/pata_sis.c|4 ++-- 6 files changed, 8

[PATCH] drivers/edac/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/edac/edac_pci.c |2 +- drivers/edac/i5000_edac.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/edac/edac_pci.c b/drivers/edac/edac_pci.c index 5dee9f5..e0b47b7 100644 --- a/drivers/edac/edac_pci.c

[PATCH] drivers/firmware/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/firmware/edd.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/firmware/edd.c b/drivers/firmware/edd.c index 6942e06..d41a256 100644 --- a/drivers/firmware/edd.c +++ b/drivers/firmware/edd.c @@ -11,7 +11,7

[PATCH] drivers/i2c/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/i2c/busses/i2c-at91.c |2 +- drivers/i2c/busses/i2c-powermac.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/i2c/busses/i2c-at91.c b/drivers/i2c/busses/i2c-at91.c index 9c8b6d5..c09b036 100644

[PATCH] drivers/char/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/char/drm/r300_reg.h|2 +- drivers/char/drm/via_dma.c |2 +- drivers/char/efirtc.c |2 +- drivers/char/epca.c|4 ++-- drivers/char/hangcheck-timer.c |2 +- drivers/char/hvcs.c

[PATCH] drivers/ide/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/ide/pci/cs5535.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/ide/pci/cs5535.c b/drivers/ide/pci/cs5535.c index 9094916..ddcbeba 100644 --- a/drivers/ide/pci/cs5535.c +++ b/drivers/ide/pci/cs5535.c

[PATCH] drivers/input/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/input/serio/gscps2.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/input/serio/gscps2.c b/drivers/input/serio/gscps2.c index 3e99df6..adc3bd6 100644 --- a/drivers/input/serio/gscps2.c +++ b/drivers/input

[PATCH] drivers/infiniband/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/infiniband/hw/cxgb3/cxio_hal.c |2 +- drivers/infiniband/hw/ehca/ehca_av.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/infiniband/hw/cxgb3/cxio_hal.c b/drivers/infiniband/hw/cxgb3/cxio_hal.c

[PATCH] drivers/macintosh/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/macintosh/smu.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/macintosh/smu.c b/drivers/macintosh/smu.c index d409f67..8ba4938 100644 --- a/drivers/macintosh/smu.c +++ b/drivers/macintosh/smu.c

[PATCH] drivers/isdn/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/isdn/hardware/eicon/debuglib.h |2 +- drivers/isdn/hardware/eicon/di.c |2 +- drivers/isdn/hardware/eicon/message.c |2 +- drivers/isdn/hysdn/hycapi.c|2 +- 4 files changed, 4 insertions(+), 4 deletions

[PATCH] drivers/media/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/media/common/saa7146_core.c |2 +- drivers/media/dvb/dvb-core/dvb_net.c |2 +- drivers/media/video/bt8xx/bttv-cards.c|2 +- drivers/media/video/bt8xx/bttv-driver.c |2

[PATCH] include/media/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/media/rds.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/media/rds.h b/include/media/rds.h index 951c1ae..a894266 100644 --- a/include/media/rds.h +++ b/include/media/rds.h @@ -4,7 +4,7 @@ saa6588

[PATCH] drivers/message/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/message/fusion/mptctl.c |8 drivers/message/fusion/mptscsih.c |2 +- drivers/message/i2o/iop.c |2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/message/fusion/mptctl.c b/drivers

[PATCH] drivers/mtd/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/mtd/nand/autcpu12.c|6 +++--- drivers/mtd/nand/bf5xx_nand.c |2 +- drivers/mtd/nand/cs553x_nand.c |2 +- drivers/mtd/nand/edb7312.c |2 +- drivers/mtd/nand/nand_base.c |2 +- drivers/mtd/nand/nandsim.c

[PATCH] drivers/mtd/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/mtd/nand/autcpu12.c|6 +++--- drivers/mtd/nand/bf5xx_nand.c |2 +- drivers/mtd/nand/cs553x_nand.c |2 +- drivers/mtd/nand/edb7312.c |2 +- drivers/mtd/nand/nand_base.c |2 +- drivers/mtd/nand/nandsim.c

[PATCH] drivers/mtd/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/mtd/nand/autcpu12.c|6 +++--- drivers/mtd/nand/bf5xx_nand.c |2 +- drivers/mtd/nand/cs553x_nand.c |2 +- drivers/mtd/nand/edb7312.c |2 +- drivers/mtd/nand/nand_base.c |2 +- drivers/mtd/nand/nandsim.c

[PATCH] drivers/nubus/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/nubus/nubus.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/nubus/nubus.c b/drivers/nubus/nubus.c index e503c9c..f4076ae 100644 --- a/drivers/nubus/nubus.c +++ b/drivers/nubus/nubus.c @@ -352,7 +352,7

[PATCH] drivers/parisc/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/parisc/ccio-dma.c |4 ++-- drivers/parisc/hppb.c |2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/parisc/ccio-dma.c b/drivers/parisc/ccio-dma.c index 7c60cbd..ca52307 100644 --- a/drivers/parisc

[PATCH] drivers/pci/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/pci/hotplug/shpchp_hpc.c |2 +- drivers/pci/intel-iommu.c|2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pci/hotplug/shpchp_hpc.c b/drivers/pci/hotplug/shpchp_hpc.c index 5183a45..e8aa138

[PATCH] drivers/pcmcia/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/pcmcia/m32r_pcc.c|2 +- drivers/pcmcia/m8xx_pcmcia.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pcmcia/m32r_pcc.c b/drivers/pcmcia/m32r_pcc.c index c5e0d89..ec4c125 100644 --- a/drivers/pcmcia

[PATCH] drivers/s390/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/s390/block/dasd_3990_erp.c |2 +- drivers/s390/block/dasd_eckd.c |2 +- drivers/s390/char/sclp_rw.c|2 +- drivers/s390/char/tape_3590.c |2 +- drivers/s390/cio/airq.c|2 +- drivers/s390/scsi

[PATCH] drivers/spi/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/spi/spi_imx.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/spi/spi_imx.c b/drivers/spi/spi_imx.c index 2cd8573..639963e 100644 --- a/drivers/spi/spi_imx.c +++ b/drivers/spi/spi_imx.c @@ -157,7 +157,7

[PATCH] drivers/serial/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/serial/mux.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/serial/mux.c b/drivers/serial/mux.c index 8321101..e940317 100644 --- a/drivers/serial/mux.c +++ b/drivers/serial/mux.c @@ -582,7 +582,7

[PATCH] drivers/scsi/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/scsi/NCR53C9x.h |2 +- drivers/scsi/aic7xxx/aic79xx_inline.h |2 +- drivers/scsi/aic7xxx/aic79xx_osm.c|2 +- drivers/scsi/aic7xxx/aic79xx_pci.c|4 ++-- drivers/scsi/aic7xxx/aic7xxx_inline.h |2

[PATCH] drivers/ssb/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/ssb/b43_pci_bridge.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/ssb/b43_pci_bridge.c b/drivers/ssb/b43_pci_bridge.c index f145d8a..310b84f 100644 --- a/drivers/ssb/b43_pci_bridge.c +++ b/drivers/ssb

[PATCH] drivers/usb/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/usb/atm/ueagle-atm.c|2 +- drivers/usb/class/cdc-acm.c |2 +- drivers/usb/gadget/at91_udc.h |2 +- drivers/usb/gadget/fsl_usb2_udc.c |2 +- drivers/usb/gadget/omap_udc.c |2 +- drivers/usb

[PATCH] drivers/video/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/video/aty/radeon_pm.c |2 +- drivers/video/cyblafb.c |2 +- drivers/video/intelfb/intelfb.h |2 +- drivers/video/omap/lcdc.c |2 +- drivers/video/sm501fb.c |2 +- 5 files changed, 5 insertions

[PATCH] drivers/watchdog/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/watchdog/shwdt.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/watchdog/shwdt.c b/drivers/watchdog/shwdt.c index cecbedd..61dde86 100644 --- a/drivers/watchdog/shwdt.c +++ b/drivers/watchdog/shwdt.c

[PATCH] include/asm-frv/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-frv/cacheflush.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/asm-frv/cacheflush.h b/include/asm-frv/cacheflush.h index 0250040..432a69e 100644 --- a/include/asm-frv/cacheflush.h +++ b/include/asm

[PATCH] include/linux/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/linux/chio.h|2 +- include/linux/cyclades.h|2 +- include/linux/cycx_x25.h|2 +- include/linux/dmaengine.h |2 +- include/linux/ethtool.h |2 +- include/linux/fs.h

[PATCH] include/net/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/net/ax25.h |2 +- include/net/ip6_tunnel.h |2 +- include/net/irda/discovery.h |2 +- include/net/sctp/structs.h |6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/net/ax25.h b

[PATCH] kernel/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- kernel/posix-timers.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel/posix-timers.c b/kernel/posix-timers.c index 35b4bbf..36d563f 100644 --- a/kernel/posix-timers.c +++ b/kernel/posix-timers.c @@ -493,7 +493,7

[PATCH] include/scsi/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/scsi/scsi_transport_fc.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/scsi/scsi_transport_fc.h b/include/scsi/scsi_transport_fc.h index e466d88..4769efd 100644 --- a/include/scsi/scsi_transport_fc.h

[PATCH] lib/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- lib/crc32.c|2 +- lib/zlib_deflate/defutil.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/crc32.c b/lib/crc32.c index d2c2f25..49d1c9e 100644 --- a/lib/crc32.c +++ b/lib/crc32.c @@ -348,7 +348,7

[PATCH] net/core/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/core/dev.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/core/dev.c b/net/core/dev.c index 26a3a3a..be9d301 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -2819,7 +2819,7 @@ void dev_set_allmulti(struct

[PATCH] include/asm-m68knommu/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/asm-m68knommu/bitops.h |2 +- include/asm-m68knommu/commproc.h|2 +- include/asm-m68knommu/delay.h |2 +- include/asm-m68knommu/m5249sim.h|4 ++-- include/asm-m68knommu/m5307sim.h| 12

[PATCH] fs/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- fs/befs/btree.c|2 +- fs/befs/datastream.c |2 +- fs/freevxfs/vxfs_dir.h |2 +- fs/freevxfs/vxfs_immed.c |2 +- fs/gfs2/recovery.c |2 +- fs/ocfs2/alloc.c |2 +- fs/ocfs2/dir.c

[PATCH] net/dccp/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/dccp/ackvec.h |2 +- net/dccp/ccids/ccid3.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/dccp/ackvec.h b/net/dccp/ackvec.h index 9ef0737..9671ecd 100644 --- a/net/dccp/ackvec.h +++ b/net/dccp/ackvec.h

[PATCH] net/ipv6/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/ipv6/ndisc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 67997a7..777ed73 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -612,7 +612,7 @@ void ndisc_send_rs

[PATCH] sound/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- sound/drivers/serial-u16550.c|6 ++-- sound/isa/es18xx.c |2 +- sound/pci/au88x0/au88x0_core.c |2 +- sound/pci/cs46xx/cs46xx_lib.c|2 +- sound/pci/hda/hda_codec.h|2 +- sound/pci/rme9652/hdsp.c

[PATCH] include/sound/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/sound/ad1848.h |2 +- include/sound/cs4231-regs.h |2 +- include/sound/soc-dapm.h|2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sound/ad1848.h b/include/sound/ad1848.h index d04f9e7

[PATCH] net/sctp/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/sctp/sm_make_chunk.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c index f487629..ed7c9e3 100644 --- a/net/sctp/sm_make_chunk.c +++ b/net/sctp

[PATCH] net/sched/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/sched/sch_hfsc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/sched/sch_hfsc.c b/net/sched/sch_hfsc.c index 55e7e45..a6ad491 100644 --- a/net/sched/sch_hfsc.c +++ b/net/sched/sch_hfsc.c @@ -160,7 +160,7

[PATCH] net/netlabel/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/netlabel/netlabel_mgmt.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/netlabel/netlabel_mgmt.c b/net/netlabel/netlabel_mgmt.c index 5648337..9c41464 100644 --- a/net/netlabel/netlabel_mgmt.c +++ b/net/netlabel

[PATCH] net/irda/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/irda/ircomm/ircomm_param.c |2 +- net/irda/irlan/irlan_eth.c |2 +- net/irda/irlap_frame.c |2 +- net/irda/parameters.c | 12 ++-- net/irda/wrapper.c |2 +- 5 files changed, 10

  1   2   3   4   5   6   7   8   9   10   >