1. 29 Sep, 2008 14 commits
  2. 25 Sep, 2008 1 commit
  3. 24 Sep, 2008 22 commits
  4. 23 Sep, 2008 3 commits
    • Jack Tan's avatar
      [MIPS] Fixe the definition of PTRS_PER_PGD · 5291925a
      Jack Tan authored
      When we use > 4KB's page size the original definition is not consistent
      with PGDIR_SIZE. For exeample, if we use 16KB page size the PGDIR_SHIFT is
      (14-2) + 14 = 26, PGDIR_SIZE is 2^26,so the PTRS_PER_PGD should be:
      
      	2^32/2^26 = 2^6
      
      but the original definition of PTRS_PER_PGD is 4096 (PGDIR_ORDER = 0).
      
      So, this definition needs to be consistent with the PGDIR_SIZE.
      
      And the new definition is consistent with the PGD init in pagetable_init().
      Signed-off-by: default avatarDajie Tan <jiankemeng@gmail.com>
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      5291925a
    • Bruno Randolf's avatar
      [MIPS] au1000: Fix gpio direction · 44ce1719
      Bruno Randolf authored
      When setting the direction of one GPIO pin we have to keep the state of the
      other pins, hence use binary OR. Also gpio_direction_output() wants to set an
      initial value, so add that too.
      
      This fixes a problem with the USB power switch on mtx-1 boards.
      Signed-off-by: default avatarBruno Randolf <br1@einfach.org>
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      44ce1719
    • Linus Torvalds's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6 · fb478da5
      Linus Torvalds authored
      * git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6: (23 commits)
        USB: revert recovery from transient errors
        usb: unusual devs patch for Nokia 5310 Music Xpress
        usb: ftdi_sio: add support for Domintell devices
        USB: drivers/usb/musb/: disable it on SuperH
        USB Serial: Sierra: Add MC8785 VID/PID
        USB: serial: add ZTE CDMA Tech id to option driver
        USB: ftdi_sio: Add 0x5050/0x0900 USB IDs (Papouch Quido USB 4/4)
        usb serial: ti_usb_3410_5052 obviously broken by firmware changes
        USB: fsl_usb2_udc: fix VDBG() format string
        USB: unusual_devs addition for RockChip MP3 player
        USB: SERIAL CP2101 add device IDs
        usb-serial: Add Siemens EF81 to PL-2303 hack triggers
        USB: fix EHCI periodic transfers
        usb: musb: fix include path
        USB: Fixing Nokia 3310c in storage mode
        usb gadget: fix omap_udc DMA regression
        USB: update of Documentation/usb/anchors.txt
        USB: fix hcd interrupt disabling
        USB: Correct Sierra Wireless USB EVDO Modem Device ID
        USB: Fix the Nokia 6300 storage-mode.
        ...
      fb478da5