05 Dec, 2009

2 commits


27 Jul, 2008

1 commit

  • IRQT_* and __IRQT_* were obsoleted long ago by patch [3692/1].
    Remove them completely. Sed script for the reference:

    s/__IRQT_RISEDGE/IRQ_TYPE_EDGE_RISING/g
    s/__IRQT_FALEDGE/IRQ_TYPE_EDGE_FALLING/g
    s/__IRQT_LOWLVL/IRQ_TYPE_LEVEL_LOW/g
    s/__IRQT_HIGHLVL/IRQ_TYPE_LEVEL_HIGH/g
    s/IRQT_RISING/IRQ_TYPE_EDGE_RISING/g
    s/IRQT_FALLING/IRQ_TYPE_EDGE_FALLING/g
    s/IRQT_BOTHEDGE/IRQ_TYPE_EDGE_BOTH/g
    s/IRQT_LOW/IRQ_TYPE_LEVEL_LOW/g
    s/IRQT_HIGH/IRQ_TYPE_LEVEL_HIGH/g
    s/IRQT_PROBE/IRQ_TYPE_PROBE/g
    s/IRQT_NOEDGE/IRQ_TYPE_NONE/g

    Signed-off-by: Dmitry Baryshkov
    Signed-off-by: Russell King

    Dmitry Baryshkov
     

02 Jul, 2006

1 commit


01 Jul, 2006

1 commit


05 Jan, 2006

2 commits

  • Patch from Deepak Saxena

    This patch removes referneces to gpio_isr_line_clear() from the
    NAS 100d platform implementation.

    Depends on 3192/1 and 3215/1

    Signed-off-by: Deepak Saxena
    Signed-off-by: Russell King

    Deepak Saxena
     
  • Patch from Rod Whitby

    This patch adds support for a new arm/ixp4xx machine - the Iomega NAS 100d network attached storage product. The NAS100D is a consumer device containing a 266MHz Intel IXP420 processor, 16MB of flash, 64MB of RAM, a 160Gb internal IDE hard disk, and 802.11b/g wireless on an Atheros mini-PCI card.

    Work on porting the latest 2.6.x kernel to this device is being done by
    the NSLU2-Linux project (the same team who maintains the port to the
    Linksys NSLU2 device). In particular, the majority of this patch was
    authored by Alessandro Zummo, based on the work done for MACH_NSLU2
    support by the NSLU2-Linux core team of developers.

    MACH_NAS100D (as implemented by this patch) can be enabled in jumbo
    ixp4xx kernels without any affect on the other machines supported by
    that kernel.

    This patch applies cleanly against 2.6.15-rc7 and should be trivial to
    apply to later kernel versions. It does not depend upon any other
    patches.

    Modified files (and number of lines inserted):
    arch/arm/mach-ixp4xx/Kconfig | 8
    arch/arm/mach-ixp4xx/Makefile | 1
    include/asm-arm/arch-ixp4xx/hardware.h | 1
    include/asm-arm/arch-ixp4xx/irqs.h | 9
    include/asm-arm/arch-ixp4xx/nas100d.h | 75
    arch/arm/mach-ixp4xx/nas100d-pci.c | 77
    arch/arm/mach-ixp4xx/nas100d-power.c | 69
    arch/arm/mach-ixp4xx/nas100d-setup.c | 133

    -- Rod Whitby (NSLU2-Linux project lead)

    Signed-off-by: Rod Whitby
    Signed-off-by: Alessandro Zummo
    Signed-off-by: Russell King

    Rod Whitby