24 Aug, 2008

1 commit


27 Jul, 2008

2 commits

  • 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
     
  • asic->irq_nr is unsigned. platform_get_irq() may return signed unnoticed

    Signed-off-by: Roel Kluin
    Cc: Joe Perches
    Acked-by: Samuel Ortiz
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Roel Kluin
     

21 Jul, 2008

9 commits


30 Apr, 2008

1 commit


31 Mar, 2008

1 commit


08 Feb, 2008

1 commit

  • This is a patch for the Compaq ASIC3 multi function chip, found in many
    PDAs (iPAQs, HTCs...).

    It is a simplified version of Paul Sokolovsky's first proposal [1]. With
    this code, it is basically a GPIO and IRQ expander. My plan is to add more
    features once this patch gets reviewed and accepted.

    [1] http://lkml.org/lkml/2007/5/1/46

    Signed-off-by: Samuel Ortiz
    Cc: Paul Sokolovsky
    Cc: Ben Dooks
    Cc: Thomas Gleixner
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Samuel Ortiz