1. 09 Nov, 2006 2 commits
    • David Brownell's avatar
      musb_hdrc: small fixes, mostly suspend/resume · b659d87e
      David Brownell authored
      A collection of mostly orthogonal and small fixes:
      
       - Update various corner cases in the side suspend/resume code,
         triggered mostly on the host side:
           * avoid spurious gadget driver resume callbacks in B_IDLE state
           * avoid spurious gadget driver suspend callbacks in A_HOST state
           * cope better with some spurious resume irqs
           * partial fix for disconnection issues in A_SUSPEND
      
       - Resolve some TUSB rmmod races by disabling IRQs at the proper moment,
         and killing the idle timer.
      
       - Only mark TUSB device as wakeup-capable if it's connected to an
         IRQ which allows that.
      
       - Don't idle the TUSB chip until khubd handles all pending port
         status change events; dump that status in procfs.
      Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
      b659d87e
    • David Brownell's avatar
      musb_hdrc: remove broken Mentor OTG code · 8e84c387
      David Brownell authored
      Remove most of the strange OTG-incompatible logic from Mentor, with
      its CamelCasing and so forth.  It's better to trigger the transitions
      explicitly with relevant operations, like suspend triggering HNP, than
      trying to track a subset of the OTG triggers.
      
      Plus some minor cleanups related to previous patches:  better fix
      for the "use_dma=n" related compiler warning, pt_regs for omap2430.
      Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
      8e84c387
  2. 01 Nov, 2006 22 commits
  3. 31 Oct, 2006 4 commits
    • Linus Torvalds's avatar
      Linux 2.6.19-rc4 · ae99a78a
      Linus Torvalds authored
      Not halloween. Not scary. Just a regular -rc release.
      ae99a78a
    • Linus Torvalds's avatar
      Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus · 528ba4ef
      Linus Torvalds authored
      * 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus:
        [MIPS] MIPS doesn't need compat_sys_getdents.
        [MIPS] JMR3927: Fixup another victim of the irq pt_regs cleanup.
        [MIPS] EMMA 2 / Markeins: struct resource takes physical addresses.
        [MIPS] EMMA 2 / Markeins: Convert to name struct resource initialization.
        [MIPS] EMMA 2 / Markeins: Formitting fixes split from actual address fixes.
        [MIPS] EMMA 2 / Markeins: Fix build wreckage due to genirq wreckage.
        [MIPS] Ocelot G: Fix build error and numerous warnings.
        [MIPS] Fix return value of TXX9 SPI interrupt handler
        [MIPS] Au1000: Fix warning about unused variable.
        [MIPS] Wire up getcpu(2) and epoll_wait(2) syscalls.
        [MIPS] Make SB1 cache flushes not to use on_each_cpu
        [MIPS] Fix warning about unused definition in c-sb1.c
        [MIPS] SMTC: Make 8 the default number of processors.
        [MIPS] Oprofile: Fix MIPSxx counter number detection.
        [MIPS] Au1xx0 code sets incorrect mips_hpt_frequency
        [MIPS] Oprofile: fix on non-VSMP / non-SMTC SMP configurations.
      528ba4ef
    • Jun'ichi Nomura's avatar
      [PATCH] clean up add_bd_holder() · df6c0cd9
      Jun'ichi Nomura authored
      add_bd_holder() is called from bd_claim_by_kobject to put a given struct
      bd_holder in the list if there is no matching entry.
      
      There are 3 possible results of add_bd_holder():
        1. there is no matching entry and add the given one to the list
        2. there is matching entry, so just increment reference count of
           the existing one
        3. something failed during its course
      
      1 and 2 are successful cases.  But for case 2, someone has to free the
      unused struct bd_holder.
      
      The current code frees it inside of add_bd_holder and returns same value
      0 for both cases 1 and 2.  However, it's natural and less error-prone if
      caller frees it since it's allocated by the caller.
      Signed-off-by: default avatarJun'ichi Nomura <j-nomura@ce.jp.nec.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      df6c0cd9
    • Jun'ichi Nomura's avatar
      [PATCH] fix bd_claim_by_kobject error handling · bcb55165
      Jun'ichi Nomura authored
      This fixes bd_claim_by_kobject to release bdev correctly in case that
      bd_claim succeeds but following add_bd_holder fails.
      Signed-off-by: default avatarJun'ichi Nomura <j-nomura@ce.jp.nec.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      bcb55165
  4. 30 Oct, 2006 12 commits