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
     

07 Sep, 2006

1 commit

  • Patch from Martin Michlmayr

    Include linux/irq.h in the nslu2 code in order to avoid the following
    compiler error:

    CC arch/arm/mach-ixp4xx/nslu2-power.o
    arch/arm/mach-ixp4xx/nslu2-power.c: In function 'nslu2_power_init':
    arch/arm/mach-ixp4xx/nslu2-power.c:53: warning: implicit declaration of function 'set_irq_type'
    arch/arm/mach-ixp4xx/nslu2-power.c:53: error: 'IRQ_TYPE_LEVEL_LOW' undeclared (first use in this function)
    arch/arm/mach-ixp4xx/nslu2-power.c:53: error: (Each undeclared identifier is reported only once
    arch/arm/mach-ixp4xx/nslu2-power.c:53: error: for each function it appears in.)
    arch/arm/mach-ixp4xx/nslu2-power.c:54: error: 'IRQ_TYPE_LEVEL_HIGH' undeclared (first use in this function)
    make[5]: *** [arch/arm/mach-ixp4xx/nslu2-power.o] Error 1

    Signed-off-by: Martin Michlmayr
    Signed-off-by: Russell King

    Martin Michlmayr
     

01 Jul, 2006

1 commit


05 Jan, 2006

1 commit

  • Patch from Deepak Saxena

    Other than interrupt masking purposes, this API is only used when
    configuring interrupt lines and this patch moves that functionality
    directly into the ixp4xx_set_irq_type() implementation as board level
    PCI code should not need to worry about those details.

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

    Deepak Saxena
     

10 Nov, 2005

1 commit

  • Patch from Alessandro Zummo

    This patch adds support for the LinkSys NSLU2 running with
    both big and little-endian kernels. The LinkSys NSLU2 is
    a cost engineered ARM, XScale 420 based system similar to
    the the Intel IXDP425 evaluation board. It uses the
    IXP4XX ARCH.

    While this patch applies independently of other patches
    the resultant kernel requires further patches to successfully
    use onboard devices, including the onboard flash. Since these
    patches are independent of this one they will be submitted
    separately.

    A defconfig is not included here because not all of
    the required drivers are actually in the kernel.
    We intend to provide one as soon as the patches
    will be incorporated in mainstream.

    This patch is the combined work of nslu2-linux.org

    Signed-off-by: John Bowler
    Signed-off-by: Alessandro Zummo
    Signed-off-by: Deepak Saxena
    Signed-off-by: Lennert Buytenhek
    Signed-off-by: Russell King

    Alessandro Zummo